Home | History | Annotate | Download | only in impl

Lines Matching refs:day

36 	private int day = 0;
82 this.day = intCalendar.get(Calendar.DAY_OF_MONTH);
104 this.day = calendar.get(Calendar.DAY_OF_MONTH);
177 return day;
184 public void setDay(int day)
186 if (day < 1)
188 this.day = 1;
190 else if (day > 31)
192 this.day = 31;
196 this.day = day;
321 calendar.set(Calendar.DAY_OF_MONTH, day);