Searched defs:setStartRule (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DSimpleTimeZone.java141 * <code>setStartRule</code>.
371 * <pre><code>setStartRule(Calendar.APRIL, 1, Calendar.SUNDAY, 2*60*60*1000);</code></pre>
385 public void setStartRule(int startMonth, int startDay, int startDayOfWeek, int startTime) method in class:SimpleTimeZone
399 * <pre><code>setStartRule(startMonth, startDay, 0, startTime)</code></pre>
412 public void setStartRule(int startMonth, int startDay, int startTime) { method in class:SimpleTimeZone
413 setStartRule(startMonth, startDay, 0, startTime);
435 public void setStartRule(int startMonth, int startDay, int startDayOfWeek, method in class:SimpleTimeZone
440 setStartRule(startMonth, startDay, -startDayOfWeek, startTime);
442 setStartRule(startMonth, -startDay, -startDayOfWeek, startTime);
1313 // This is the format accepted by the constructor and by setStartRule()
[all...]

Completed in 33 milliseconds