diff options
author | Michael Koch <konqueror@gmx.de> | 2005-02-16 12:36:19 +0000 |
---|---|---|
committer | Michael Koch <konqueror@gmx.de> | 2005-02-16 12:36:19 +0000 |
commit | 36876d4cc72d3fc580567dd3c0e1ef7a26070d09 (patch) | |
tree | 6be617dd061be61913ebda21254a1cb4346ad75e /java/util/prefs | |
parent | 327d877cb7a46a5277e6da8d839f9815160fe49d (diff) | |
download | classpath-36876d4cc72d3fc580567dd3c0e1ef7a26070d09.tar.gz |
2005-02-16 Michael Koch <konqueror@gmx.de>
* java/awt/geom/Ellipse2D.java,
java/beans/PropertyDescriptor.java,
java/net/NetworkInterface.java,
java/nio/ByteBufferImpl.java,
java/nio/DoubleBufferImpl.java,
java/nio/FloatBufferImpl.java,
java/nio/IntBufferImpl.java,
java/nio/LongBufferImpl.java,
java/nio/ShortBufferImpl.java,
java/nio/channels/Channel.java,
java/util/Calendar.java,
java/util/Comparator.java,
java/util/Date.java,
java/util/SimpleTimeZone.java,
java/util/logging/FileHandler.java,
java/util/prefs/InvalidPreferencesFormatException.java,
java/util/prefs/Preferences.java,
javax/security/auth/callback/ConfirmationCallback.java,
javax/security/sasl/Sasl.java,
javax/security/sasl/SaslServerFactory.java,
javax/swing/JComponent.java,
javax/swing/JList.java,
javax/swing/JProgressBar.java,
javax/swing/JTree.java,
javax/swing/text/JTextComponent.java:
Fixed javadocs to contain valid (X)HTML.
Diffstat (limited to 'java/util/prefs')
-rw-r--r-- | java/util/prefs/InvalidPreferencesFormatException.java | 5 | ||||
-rw-r--r-- | java/util/prefs/Preferences.java | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/java/util/prefs/InvalidPreferencesFormatException.java b/java/util/prefs/InvalidPreferencesFormatException.java index 059963152..220e1420c 100644 --- a/java/util/prefs/InvalidPreferencesFormatException.java +++ b/java/util/prefs/InvalidPreferencesFormatException.java @@ -1,6 +1,6 @@ /* InvalidPreferencesFormatException - indicates reading prefs from stream failed - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -49,8 +49,9 @@ import java.io.ObjectOutputStream; * * <p>Note that although this class inherits the Serializable interface, an * attempt to serialize will fail with a <code>NotSerializableException</code>. + * </p> * - * @author Mark Wielaard <mark@klomp.org> + * @author Mark Wielaard (mark@klomp.org) * @see Preferences * @since 1.4 * @status updated to 1.4 diff --git a/java/util/prefs/Preferences.java b/java/util/prefs/Preferences.java index c0f023195..4186c805a 100644 --- a/java/util/prefs/Preferences.java +++ b/java/util/prefs/Preferences.java @@ -1,5 +1,5 @@ /* Preferences -- Preference node containing key value entries and subnodes - Copyright (C) 2001, 2004 Free Software Foundation, Inc. + Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -234,7 +234,7 @@ public abstract class Preferences { * The package node name of the object is determined by dropping the * class name of the object of the fully quallified class name and * replacing all '.' to '/' in the package name. If the class of the - * object has no package then the package node name is "<unnamed>". + * object has no package then the package node name is "<unnamed>". * The returened node is <code>systemRoot().node(packageNodeName)</code>. * * @param o Object whose default system preference node is requested @@ -253,7 +253,7 @@ public abstract class Preferences { * The package node name of the object is determined by dropping the * class name of the object of the fully quallified class name and * replacing all '.' to '/' in the package name. If the class of the - * object has no package then the package node name is "<unnamed>". + * object has no package then the package node name is "<unnamed>". * The returened node is <code>userRoot().node(packageNodeName)</code>. * * @param o Object whose default user preference node is requested |