diff options
author | Mark Wielaard <mark@gcc.gnu.org> | 2005-11-15 23:20:01 +0000 |
---|---|---|
committer | Mark Wielaard <mark@gcc.gnu.org> | 2005-11-15 23:20:01 +0000 |
commit | 8f523f3a1047919d3563daf1ef47ba87336ebe89 (patch) | |
tree | a5eb7cf42a51869cc8aa1fad7ad6a90cca47fdd8 /libjava/classpath/javax/print/attribute/DateTimeSyntax.java | |
parent | 02e549bfaaec38f68307e7f34e46ea57ea1809af (diff) | |
download | gcc-8f523f3a1047919d3563daf1ef47ba87336ebe89.zip gcc-8f523f3a1047919d3563daf1ef47ba87336ebe89.tar.gz gcc-8f523f3a1047919d3563daf1ef47ba87336ebe89.tar.bz2 |
Imported GNU Classpath 0.19 + gcj-import-20051115.
* sources.am: Regenerated.
* Makefile.in: Likewise.
* scripts/makemake.tcl: Use glob -nocomplain.
From-SVN: r107049
Diffstat (limited to 'libjava/classpath/javax/print/attribute/DateTimeSyntax.java')
-rw-r--r-- | libjava/classpath/javax/print/attribute/DateTimeSyntax.java | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libjava/classpath/javax/print/attribute/DateTimeSyntax.java b/libjava/classpath/javax/print/attribute/DateTimeSyntax.java index 0e583e0..d591932 100644 --- a/libjava/classpath/javax/print/attribute/DateTimeSyntax.java +++ b/libjava/classpath/javax/print/attribute/DateTimeSyntax.java @@ -1,5 +1,5 @@ /* DateTimeSyntax.java -- - Copyright (C) 2003 Free Software Foundation, Inc. + Copyright (C) 2003, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,10 @@ import java.io.Serializable; import java.util.Date; /** - * @author Michael Koch + * <code>DateTimeSyntax</code> is the abstract base class of all attribute + * classes having a date and a time as value. + * + * @author Michael Koch (konqueror@gmx.de) */ public abstract class DateTimeSyntax implements Cloneable, Serializable { @@ -52,7 +55,7 @@ public abstract class DateTimeSyntax implements Cloneable, Serializable /** * Creates a <code>DateTimeSyntax</code> with a given value. * - * @param value the value for this syntax + * @param value the date for this syntax * * @exception NullPointerException if value is null */ @@ -67,7 +70,7 @@ public abstract class DateTimeSyntax implements Cloneable, Serializable /** * Returns the date value of this object. * - * @return the date value + * @return The date value. */ public Date getValue() { @@ -79,7 +82,8 @@ public abstract class DateTimeSyntax implements Cloneable, Serializable * * @param obj the object to test * - * @return True if both objects are equal, false otherwise. + * @return <code>true</code> if both objects are equal, + * <code>false</code> otherwise. */ public boolean equals(Object obj) { @@ -92,7 +96,7 @@ public abstract class DateTimeSyntax implements Cloneable, Serializable /** * Returns the hashcode for this object. * - * @return the hashcode + * @return The hashcode. */ public int hashCode() { |