Class java.util.Date (1.0)


public class Date extends Object implements Serializable {
  // Public Constructors
    public Date( );
    public Date(long date);
    public Date(int year, int month, int date);  // Deprecated
    public Date(int year, int month, int date, int hrs, int min);  // Deprecated
    public Date(int year, int month, int date, int hrs, int min, int sec);  // Deprecated
    public Date(String s);  // Deprecated
  // Class Methods
    public static long UTC(int year, int month, int date, int hrs, int min, int sec);  // Deprecated
    public static long parse(String s);  // Deprecated
  // Public Instance Methods
    public boolean after(Date when);
    public boolean before(Date when);
    public boolean equals(Object obj);  // Overrides Object.equals( )
    public int getDate( );  // Deprecated
    public int getDay( );  // Deprecated
    public int getHours( );  // Deprecated
    public int getMinutes( );  // Deprecated
    public int getMonth( );  // Deprecated
    public int getSeconds( );  // Deprecated
    public long getTime( );
    public int getTimezoneOffset( );  // Deprecated
    public int getYear( );  // Deprecated
    public int hashCode( );  // Overrides Object.hashCode( )
    public void setDate(int date);  // Deprecated
    public void setHours(int hours);  // Deprecated
    public void setMinutes(int minutes);  // Deprecated
    public void setMonth(int month);  // Deprecated
    public void setSeconds(int seconds);  // Deprecated
    public void setTime(long time);
    public void setYear(int year);  // Deprecated
    public String toGMTString( );  // Deprecated
    public String toLocaleString( );  // Deprecated
    public String toString( );  // Overrides Object.toString( )
}