This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Patch: java.io.ObjectStreamField


Hi list,


I commited the attached patch to add some documentation to 
ObjectStreamField.isUnshared().


Michael
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2473
diff -u -b -B -r1.2473 ChangeLog
--- ChangeLog	20 Dec 2003 15:33:22 -0000	1.2473
+++ ChangeLog	20 Dec 2003 22:35:29 -0000
@@ -1,3 +1,7 @@
+2003-12-20  Michael Koch  <konqueror@gmx.de>
+
+	* java/io/ObjectStreamField.java (isUnshared): Added documentation.
+
 2003-12-20  Mohan Embar  <gnustuff@thisiscool.com>
 
 	* gnu/java/nio/SelectorImpl.java
Index: java/io/ObjectStreamField.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/io/ObjectStreamField.java,v
retrieving revision 1.6
diff -u -b -B -r1.6 ObjectStreamField.java
--- java/io/ObjectStreamField.java	16 Dec 2003 12:19:33 -0000	1.6
+++ java/io/ObjectStreamField.java	20 Dec 2003 22:35:29 -0000
@@ -205,6 +205,12 @@
     offset = off;
   }
 
+  /**
+   * This method returns whether the field represented by this object is
+   * unshared or not.
+   *
+   * @return Tells if this field is unshared or not.
+   */
   public boolean isUnshared ()
   {
     return unshared;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]