diff options
author | Jesse Rosenstock <jmr@ugcs.caltech.edu> | 2002-09-25 21:10:21 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2002-09-25 21:10:21 +0000 |
commit | 8dc24041f7606fe84ce5e5f2b82b79182d1dd383 (patch) | |
tree | 7922a2f346e1f02616c830b011180b56cb2bfc8d /libjava/java | |
parent | 8848a766bc1ec6b38f278ecef52e2d8bd5a946da (diff) | |
download | gcc-8dc24041f7606fe84ce5e5f2b82b79182d1dd383.zip gcc-8dc24041f7606fe84ce5e5f2b82b79182d1dd383.tar.gz gcc-8dc24041f7606fe84ce5e5f2b82b79182d1dd383.tar.bz2 |
re PR libgcj/7786 (TimeZone.getDSTSavings() from JDK1.4 not implemented)
2002-09-25 Jesse Rosenstock <jmr@ugcs.caltech.edu>
* java/util/TimeZone.java (getDSTSavings): New method.
Fixes PR libgcj/7786.
From-SVN: r57518
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/util/TimeZone.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libjava/java/util/TimeZone.java b/libjava/java/util/TimeZone.java index eba2236..6d44930 100644 --- a/libjava/java/util/TimeZone.java +++ b/libjava/java/util/TimeZone.java @@ -961,6 +961,22 @@ public abstract class TimeZone implements java.io.Serializable, Cloneable public abstract boolean inDaylightTime(Date date); /** + * Gets the daylight savings offset. This is a positive offset in + * milliseconds with respect to standard time. Typically this + * is one hour, but for some time zones this may be half an our. + * <p>The default implementation returns 3600000 milliseconds + * (one hour) if the time zone uses daylight savings time + * (as specified by {@link #useDaylightTime()}), otherwise + * it returns 0. + * @return the daylight savings offset in milliseconds. + * @since 1.4 + */ + public int getDSTSavings () + { + return useDaylightTime () ? 3600000 : 0; + } + + /** * Gets the TimeZone for the given ID. * @param ID the time zone identifier. * @return The time zone for the identifier or GMT, if no such time |