ObjectStreamField.java (isUnshared): Added documentation.

2003-12-20  Michael Koch  <konqueror@gmx.de>

	* java/io/ObjectStreamField.java (isUnshared): Added documentation.

From-SVN: r74894
This commit is contained in:
Michael Koch 2003-12-20 22:36:02 +00:00 committed by Michael Koch
parent 781f4ec18f
commit 70d26e8152
2 changed files with 10 additions and 0 deletions

View file

@ -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

View file

@ -205,6 +205,12 @@ public class ObjectStreamField implements Comparable
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;