Search Results
OK to copy?
Examples 1 through 10 of
33 (0.0010 seconds)
Class:
org.springframework.jdbc.core.StatementCreatorUtilsTests
©,
Rating:
100% of 6,
C1
Class: org.springframework.jdbc.core.StatementCreatorUtilsTests ©, Rating: 75% of 4, C1
Class: org.springframework.jdbc.core.StatementCreatorUtilsTests ©, Rating: 100% of 2, C1
Class: org.springframework.jdbc.core.StatementCreatorUtilsTests ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C1
jgoodies_validation Class: com.jgoodies.validation.tests.ValidationUtilsTest ©, Rating: 0% of 0, C1
166
167 public void testSetParameterValueWithCalendarAndUnknownType() throws SQLException {
168 java.util.Calendar cal = new GregorianCalendar();
169 ps.setObject(1, new java.sql.Timestamp(cal.getTime().getTime()));
170 psControl.setVoidCallable(1);
Class: org.springframework.jdbc.core.StatementCreatorUtilsTests ©, Rating: 75% of 4, C1
150
151 public void testSetParameterValueWithTimestampAndCalendar() throws SQLException {
152 java.util.Calendar cal = new GregorianCalendar();
153 ps.setTimestamp(1, new java.sql.Timestamp(cal.getTime().getTime()), cal);
154 psControl.setVoidCallable(1);
Class: org.springframework.jdbc.core.StatementCreatorUtilsTests ©, Rating: 100% of 2, C1
126
127 public void testSetParameterValueWithTimeAndCalendar() throws SQLException {
128 java.util.Calendar cal = new GregorianCalendar();
129 ps.setTime(1, new java.sql.Time(cal.getTime().getTime()), cal);
130 psControl.setVoidCallable(1);
Class: org.springframework.jdbc.core.StatementCreatorUtilsTests ©, Rating: 0% of 0, C1
102
103 public void testSetParameterValueWithDateAndCalendar() throws SQLException {
104 java.util.Calendar cal = new GregorianCalendar();
105 ps.setDate(1, new java.sql.Date(cal.getTime().getTime()), cal);
106 psControl.setVoidCallable(1);
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C2
243 String[] categories = new String[numDays];
244
245 Calendar currentDate = new GregorianCalendar();
246 currentDate.setTime(startDate);
247 int dayIndex = 0;
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C2
204 //
205 Calendar now = new GregorianCalendar();
206 Calendar currentDate = new GregorianCalendar();
207 currentDate.setTime(startDate);
208 double cumulativeValue = 0.0;
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C2
203 // Step through the points of the series and accumulate their values one day at a time
204 //
205 Calendar now = new GregorianCalendar();
206 Calendar currentDate = new GregorianCalendar();
207 currentDate.setTime(startDate);
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C1
081 Calendar start = new GregorianCalendar();
082 start.setTime(startTime);
083 Calendar end = new GregorianCalendar();
084 end.setTime(endTime);
085
Class: com.technoetic.xplanner.charts.TaskVelocityData ©, Rating: 0% of 0, C1
079 */
080 private static int getNumberOfWorkingDays(Date startTime, Date endTime) {
081 Calendar start = new GregorianCalendar();
082 start.setTime(startTime);
083 Calendar end = new GregorianCalendar();
jgoodies_validation Class: com.jgoodies.validation.tests.ValidationUtilsTest ©, Rating: 0% of 0, C1
266 Calendar feb28th2004 = new GregorianCalendar(2004, 1, 28); // Feb-28-04
267 Calendar feb29th2004 = new GregorianCalendar(2004, 1, 29); // Feb-29-04
268 Calendar mar1st2004 = new GregorianCalendar(2004, 2, 01); // Mar-01-04
269
270 assertEquals("Feb-29-04 is a day after Feb-28-04.",