diff options
Diffstat (limited to 'libjava/java/util/prefs')
-rw-r--r-- | libjava/java/util/prefs/BackingStoreException.java | 4 | ||||
-rw-r--r-- | libjava/java/util/prefs/InvalidPreferencesFormatException.java | 5 | ||||
-rw-r--r-- | libjava/java/util/prefs/Preferences.java | 6 |
3 files changed, 8 insertions, 7 deletions
diff --git a/libjava/java/util/prefs/BackingStoreException.java b/libjava/java/util/prefs/BackingStoreException.java index 2607142..8508251 100644 --- a/libjava/java/util/prefs/BackingStoreException.java +++ b/libjava/java/util/prefs/BackingStoreException.java @@ -1,6 +1,6 @@ /* BackingStoreException.java - chained exception thrown when backing store fails - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -52,7 +52,7 @@ 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>. * - * @author Mark Wielaard <mark@klomp.org> + * @author Mark Wielaard (mark@klomp.org) * @since 1.4 * @status updated to 1.4 */ diff --git a/libjava/java/util/prefs/InvalidPreferencesFormatException.java b/libjava/java/util/prefs/InvalidPreferencesFormatException.java index 0599631..220e142 100644 --- a/libjava/java/util/prefs/InvalidPreferencesFormatException.java +++ b/libjava/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/libjava/java/util/prefs/Preferences.java b/libjava/java/util/prefs/Preferences.java index c0f0231..4186c80 100644 --- a/libjava/java/util/prefs/Preferences.java +++ b/libjava/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 |