001: package java.util;
002:
003: public class Date implements Cloneable, Comparable,
004: java.io.Serializable {
005: public Date() {
006: }
007:
008: public Date(long time) {
009: }
010:
011: public Date(int year, int month, int day) {
012: }
013:
014: public Date(int year, int month, int day, int hour, int min) {
015: }
016:
017: public Date(int year, int month, int day, int hour, int min, int sec) {
018: }
019:
020: public Date(String s) {
021: }
022:
023: public Object clone() {
024: }
025:
026: public static long UTC(int year, int month, int date, int hrs,
027: int min, int sec) {
028: }
029:
030: public long getTime() {
031: }
032:
033: public int getTimezoneOffset() {
034: }
035:
036: public void setTime(long time) {
037: }
038:
039: public boolean after(Date when) {
040: }
041:
042: public boolean before(Date when) {
043: }
044:
045: public boolean equals(Object obj) {
046: }
047:
048: public int compareTo(Date when) {
049: }
050:
051: public int compareTo(Object obj) {
052: }
053:
054: public int hashCode() {
055: }
056:
057: public String toString() {
058: }
059:
060: public String toLocaleString() {
061: }
062:
063: public String toGMTString() {
064: }
065:
066: private static int parseTz(String tok, char sign)
067: throws IllegalArgumentException {
068: }
069:
070: private static int parseMonth(String tok) {
071: }
072:
073: private static boolean parseDayOfWeek(String tok) {
074: }
075:
076: public static long parse(String string) {
077: }
078:
079: public int getYear() {
080: }
081:
082: public void setYear(int year) {
083: }
084:
085: public int getMonth() {
086: }
087:
088: public void setMonth(int month) {
089: }
090:
091: public int getDate() {
092: }
093:
094: public void setDate(int date) {
095: }
096:
097: public int getDay() {
098: }
099:
100: public int getHours() {
101: }
102:
103: public void setHours(int hours) {
104: }
105:
106: public int getMinutes() {
107: }
108:
109: public void setMinutes(int minutes) {
110: }
111:
112: public int getSeconds() {
113: }
114:
115: public void setSeconds(int seconds) {
116: }
117:
118: private void readObject(java.io.ObjectInputStream input)
119: throws java.io.IOException, ClassNotFoundException {
120: }
121:
122: private void writeObject(java.io.ObjectOutputStream output)
123: throws java.io.IOException {
124: }
125: }
|