Lines Matching refs:Calendar
48 import java.util.Calendar;
183 Calendar ca = Calendar.getInstance(); in getCurrentDateTime()
185 currentDateTime.Year = (short)ca.get(Calendar.YEAR); in getCurrentDateTime()
186 currentDateTime.Month = (short)ca.get(Calendar.MONTH); in getCurrentDateTime()
187 currentDateTime.Day = (short)ca.get(Calendar.DATE); in getCurrentDateTime()
188 currentDateTime.Minutes = (short)ca.get(Calendar.MINUTE); in getCurrentDateTime()
189 currentDateTime.Hours = (short)ca.get(Calendar.HOUR); in getCurrentDateTime()
190 currentDateTime.Seconds = (short)ca.get(Calendar.SECOND); in getCurrentDateTime()
196 Calendar ca = Calendar.getInstance(); in getCurrentDate()
198 currentDate.Year = (short)ca.get(Calendar.YEAR); in getCurrentDate()
199 currentDate.Month = (short)ca.get(Calendar.MONTH); in getCurrentDate()
200 currentDate.Day = (short)ca.get(Calendar.DATE); in getCurrentDate()