Home | History | Annotate | Download | only in impl

Lines Matching refs:month

34 	private int month = 0;
81 this.month = intCalendar.get(Calendar.MONTH) + 1; // cal is from 0..12
103 this.month = calendar.get(Calendar.MONTH) + 1; // cal is from 0..12
148 return month;
155 public void setMonth(int month)
157 if (month < 1)
159 this.month = 1;
161 else if (month > 12)
163 this.month = 12;
167 this.month = month;
320 calendar.set(Calendar.MONTH, month - 1);