Lines Matching defs:start

35  * <code>start</code> and <code>end</code> and the size
38 * called <code>calendarField</code>. The <code>start</code>
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
142 * @param start the first 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) {
182 if (!(((start == null) || (start.compareTo(value) <= 0)) &&
184 throw new IllegalArgumentException("(start <= value <= end) is false");
187 this.start = start;
199 * there are no <code>start</code>/<code>end</code> limits.
208 * If <code>start</code> is <code>null</code>,
210 * the new start value may invalidate the
211 * <code>(start &lt;= value &lt;= end)</code>
219 * For example <code>start</code> might be an instance of a class like this:
236 * <code>start</code> has changed.
238 * @param start defines the first date in the sequence
243 public void setStart(Comparable start) {
244 if ((start == null) ? (this.start != null) : !start.equals(this.start)) {
245 this.start = start;
254 * @return the value of the <code>start</code> property
258 return start;
264 * If <code>start</code> is <code>null</code>, then there is no upper
266 * start value may invalidate the <code>(start &lt;= value &lt;= end)</code>
390 * if the previous date is before <code>start</code>.
394 * is before <code>start</code>
405 return ((start == null) || (start.compareTo(prev) <= 0)) ? prev : null;
438 * the new value may invalidate the <code>(start &lt= value &lt end)</code>
440 * that the <code>(start &lt;= value &lt;= maximum)</code> invariant is true