Search Results
OK to copy?
Examples 1 through 10 of
37 (0.0010 seconds)
Class:
com.technoetic.xplanner.domain.virtual.Timesheet
©,
Rating:
0% of 0,
C1
Class: org.apache.axis.encoding.ser.CalendarSerializer ©, Rating: 0% of 0, C1
Class: org.apache.axis.encoding.ser.DateSerializer ©, Rating: 0% of 0, C1
Class: org.apache.axis.encoding.ser.DateDeserializer ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.charts.DataSampleData ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.forms.PersonTimesheetForm ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.forms.PersonTimesheetForm ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.forms.AggregateTimesheetForm ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.forms.AggregateTimesheetForm ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.gui.util.JDateField ©, Rating: 0% of 0, C1
028
029 for (; cal.getTimeInMillis() <= endDate.getTime(); cal.add(Calendar.DATE, 1)) {
030 dailyEntries.put(cal.getTime(), new DailyTimesheetEntry(cal.getTime(),
031 new BigDecimal(0.0)));
032 }
Class: org.apache.axis.encoding.ser.CalendarSerializer ©, Rating: 0% of 0, C1
100
101 public String getValueAsString(Object value, SerializationContext context) {
102 Date date = value instanceof Date ? (Date) value :
103 ((Calendar) value).getTime();
104
Class: org.apache.axis.encoding.ser.DateSerializer ©, Rating: 0% of 0, C1
104 calendar.setTime((Date)value);
105 calendar.set(Calendar.ERA, GregorianCalendar.AD);
106 value = calendar.getTime();
107 }
108 buf.append(zulu.format((Date)value));
Class: org.apache.axis.encoding.ser.DateDeserializer ©, Rating: 0% of 0, C2
127 calendar.setTime(result);
128 calendar.set(Calendar.ERA, GregorianCalendar.BC);
129 result = calendar.getTime();
130 }
131 }
Class: com.technoetic.xplanner.charts.DataSampleData ©, Rating: 0% of 0, C1
077 private String formatDay(Calendar currentDay) {
078 if (currentDay.get(Calendar.DAY_OF_WEEK) == Calendar.MONDAY) {
079 return dateFormat.format(currentDay.getTime());
080 } else {
081 return Integer.toString(currentDay.get(Calendar.DAY_OF_MONTH));
Class: com.technoetic.xplanner.forms.PersonTimesheetForm ©, Rating: 0% of 0, C1
130 int weekday = cal.get(Calendar.DAY_OF_WEEK);
131 cal.add(Calendar.DATE, -weekday + 1);
132 return cal.getTime();
133 }
134
Class: com.technoetic.xplanner.forms.PersonTimesheetForm ©, Rating: 0% of 0, C1
119 int weekday = cal.get(Calendar.DAY_OF_WEEK);
120 cal.add(Calendar.DATE, 7 - weekday);
121 return cal.getTime();
122 }
123
Class: com.technoetic.xplanner.forms.AggregateTimesheetForm ©, Rating: 0% of 0, C1
139 int weekday = cal.get(Calendar.DAY_OF_WEEK);
140 cal.add(Calendar.DATE, -weekday + 1);
141 return cal.getTime();
142 }
143
Class: com.technoetic.xplanner.forms.AggregateTimesheetForm ©, Rating: 0% of 0, C1
128 int weekday = cal.get(Calendar.DAY_OF_WEEK);
129 cal.add(Calendar.DATE, 7 - weekday);
130 return cal.getTime();
131 }
132
Class: org.apache.jmeter.gui.util.JDateField ©, Rating: 0% of 0, C1
177 c.add(field,addend);
178 }
179 String newDate =dateFormat.format(c.getTime());
180 setText(newDate);
181 if (pos > newDate.length()) pos = newDate.length();