Methods Summary |
---|
public static synchronized int | getDayOfMonth(java.util.Date date)
cal.setTime(date);
return cal.get(Calendar.DAY_OF_MONTH);
|
public static synchronized int | getMonth(java.util.Date date)
cal.setTime(date);
return cal.get(Calendar.MONTH);
|
public static synchronized int | getYear(java.util.Date date)
cal.setTime(date);
return cal.get(Calendar.YEAR);
|