Lines Matching refs:end

35  * <code>start</code> and <code>end</code> and the size
39 * and <code>end</code> properties can be <code>null</code> to
77 * <code>start</code>, or <code>end</code> properties changes.
92 private Comparable<Date> start, end;
123 * between <code>start</code> and <code>end</code>. The
132 * The <code>start</code> and <code>end</code> parameters can be
136 * <code>start</code> and <code>end</code> are specified and
144 * @param end the last date in the sequence or <code>null</code>
168 * false: <code>(start &lt;= value &lt;= end)</code>.
176 public SpinnerDateModel(Date value, Comparable<Date> start, Comparable<Date> end, int calendarField) {
184 ((end == null) || (end.compareTo(value) >= 0)))) {
185 throw new IllegalArgumentException("(start <= value <= end) is false");
189 this.end = end;
200 * there are no <code>start</code>/<code>end</code> limits.
212 * <code>(start &lt;= value &lt;= end)</code>
267 * start value may invalidate the <code>(start &lt;= value &lt;= end)</code>
277 * This method fires a <code>ChangeEvent</code> if the <code>end</code>
280 * @param end defines the last date in the sequence
285 public void setEnd(Comparable<Date> end) {
286 if ((end == null) ? (this.end != null) : !end.equals(this.end)) {
287 this.end = end;
296 * @return the value of the <code>end</code> property
300 return end;
371 * the next date is after <code>end</code>.
374 * the next date is after <code>end</code>.
385 return ((end == null) || (end.compareTo(next) >= 0)) ? next : null;
439 * the new value may invalidate the <code>(start &lt;= value &lt; end)</code>