Lines Matching defs: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.
91 private Comparable start, end;
122 * between <code>start</code> and <code>end</code>. The
131 * The <code>start</code> and <code>end</code> parameters can be
135 * <code>start</code> and <code>end</code> are specified and
143 * @param end the last date in the sequence or <code>null</code>
167 * false: <code>(start &lt;= value &lt;= end)</code>.
175 public SpinnerDateModel(Date value, Comparable start, Comparable end, int calendarField) {
183 ((end == null) || (end.compareTo(value) >= 0)))) {
184 throw new IllegalArgumentException("(start <= value <= end) is false");
188 this.end = end;
199 * there are no <code>start</code>/<code>end</code> limits.
211 * <code>(start &lt;= value &lt;= end)</code>
266 * start value may invalidate the <code>(start &lt;= value &lt;= end)</code>
276 * This method fires a <code>ChangeEvent</code> if the <code>end</code>
279 * @param end defines the last date in the sequence
284 public void setEnd(Comparable end) {
285 if ((end == null) ? (this.end != null) : !end.equals(this.end)) {
286 this.end = end;
295 * @return the value of the <code>end</code> property
299 return end;
370 * the next date is after <code>end</code>.
373 * the next date is after <code>end</code>.
384 return ((end == null) || (end.compareTo(next) >= 0)) ? next : null;
438 * the new value may invalidate the <code>(start &lt= value &lt end)</code>