Home | History | Annotate | Download | only in header

Lines Matching refs:HOUR

116     /** hour member
118 protected int hour;
143 this.hour == other.hour &&
156 hour = -1;
246 hour = javaCal.get(Calendar.HOUR_OF_DAY);
264 if (hour < 10) {
265 hourString = "0" + hour;
267 hourString = "" + hour;
329 /** get the hour
333 return hour;
368 if (hour != -1)
369 javaCal.set(Calendar.HOUR, hour);
470 * Set the hour member
472 * @throws IllegalArgumentException if h is not a valid hour.
476 throw new IllegalArgumentException("Illegal hour : " + h);
478 hour = h;