Home | History | Annotate | Download | only in format

Lines Matching refs:allDay

53      * True if this is an allDay event. The hour, minute, second fields are
56 public boolean allDay;
275 this.allDay = false;
296 * @throws IllegalArgumentException if {@link #allDay} is true but {@code
390 * included only a date and no time field, then the <code>allDay</code>
394 * <code>allDay</code> is set to false. The fields <code>weekDay</code>,
448 * the {@link #allDay} field is set to true and the {@link #hour},
557 this.allDay = that.allDay;
575 this.allDay = false;
589 * Sets the date from the given fields. Also sets allDay to true.
598 this.allDay = true;
680 * If allDay is true, expresses the time as Y-M-D</p>
685 * @param allDay
688 public String format3339(boolean allDay) {
689 if (allDay) {