/* * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores * CA 94065 USA or visit www.oracle.com if you need additional information or * have any questions. */ package java.util; /** * TimeZone represents a time zone offset, and also figures out daylight savings. * Typically, you get a TimeZone using getDefault which creates a TimeZone based on the time zone where the program is running. For example, for a program running in Japan, getDefault creates a TimeZone object based on Japanese Standard Time. * You can also get a TimeZone using getTimeZone along with a time zone ID. For instance, the time zone ID for the Pacific Standard Time zone is "PST". So, you can get a PST TimeZone object with: * This class is a pure subset of the java.util.TimeZone class in JDK 1.3. * The only time zone ID that is required to be supported is "GMT". * Apart from the methods and variables being subset, the semantics of the getTimeZone() method may also be subset: custom IDs such as "GMT-8:00" are not required to be supported. * Version: CLDC 1.1 02/01/2002 (Based on JDK 1.3) See Also:Calendar, Date */ public abstract class TimeZone{ public TimeZone(){ //TODO codavaj!! } /** * Gets all the available IDs supported. */ public static java.lang.String[] getAvailableIDs(){ return null; //TODO codavaj!! } /** * Gets the default TimeZone for this host. The source of the default TimeZone may vary with implementation. */ public static java.util.TimeZone getDefault(){ return null; //TODO codavaj!! } /** * Gets the ID of this time zone. */ public java.lang.String getID(){ return null; //TODO codavaj!! } /** * Gets offset, for current date, modified in case of daylight savings. This is the offset to add *to* GMT to get local time. Gets the time zone offset, for current date, modified in case of daylight savings. This is the offset to add *to* GMT to get local time. Assume that the start and end month are distinct. This method may return incorrect results for rules that start at the end of February (e.g., last Sunday in February) or the beginning of March (e.g., March 1). */ public abstract int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis); /** * Gets the GMT offset for this time zone. */ public abstract int getRawOffset(); /** * Gets the TimeZone for the given ID. */ public static java.util.TimeZone getTimeZone(java.lang.String ID){ return null; //TODO codavaj!! } /** * Queries if this time zone uses Daylight Savings Time. */ public abstract boolean useDaylightTime(); }