src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java

Print this page
rev 597 : 8047722: @since tag cleanup in corba
Reviewed-by:

*** 71,81 **** * <br> * The ObjectStreamClass for a specific class loaded in this Java VM can * be found using the lookup method. * * @author Roger Riggs ! * @since JDK1.1 */ public class ObjectStreamClass implements java.io.Serializable { private static final boolean DEBUG_SVUID = false ; public static final long kDefaultUID = -1; --- 71,81 ---- * <br> * The ObjectStreamClass for a specific class loaded in this Java VM can * be found using the lookup method. * * @author Roger Riggs ! * @since 1.1 */ public class ObjectStreamClass implements java.io.Serializable { private static final boolean DEBUG_SVUID = false ; public static final long kDefaultUID = -1;
*** 257,267 **** /** * Return an array of the fields of this serializable class. * @return an array containing an element for each persistent * field of this class. Returns an array of length zero if * there are no fields. ! * @since JDK1.2 */ public ObjectStreamField[] getFields() { // Return a copy so the caller can't change the fields. if (fields.length > 0) { ObjectStreamField[] dup = new ObjectStreamField[fields.length]; --- 257,267 ---- /** * Return an array of the fields of this serializable class. * @return an array containing an element for each persistent * field of this class. Returns an array of length zero if * there are no fields. ! * @since 1.2 */ public ObjectStreamField[] getFields() { // Return a copy so the caller can't change the fields. if (fields.length > 0) { ObjectStreamField[] dup = new ObjectStreamField[fields.length];
*** 881,891 **** * * @see ObjectOutputStream#useProtocolVersion * @see ObjectStreamConstants#PROTOCOL_VERSION_1 * @see ObjectStreamConstants#PROTOCOL_VERSION_2 * ! * @since JDK 1.2 */ boolean hasExternalizableBlockDataMode() { return hasExternalizableBlockData; } --- 881,891 ---- * * @see ObjectOutputStream#useProtocolVersion * @see ObjectStreamConstants#PROTOCOL_VERSION_1 * @see ObjectStreamConstants#PROTOCOL_VERSION_2 * ! * @since 1.2 */ boolean hasExternalizableBlockDataMode() { return hasExternalizableBlockData; }
*** 1517,1527 **** /* In JDK 1.1, external data was not written in block mode. * As of JDK 1.2, external data is written in block data mode. This * flag enables JDK 1.2 to be able to read JDK 1.1 written external data. * ! * @since JDK 1.2 */ private boolean hasExternalizableBlockData; Method writeObjectMethod; Method readObjectMethod; private transient Method writeReplaceObjectMethod; --- 1517,1527 ---- /* In JDK 1.1, external data was not written in block mode. * As of JDK 1.2, external data is written in block data mode. This * flag enables JDK 1.2 to be able to read JDK 1.1 written external data. * ! * @since 1.2 */ private boolean hasExternalizableBlockData; Method writeObjectMethod; Method readObjectMethod; private transient Method writeReplaceObjectMethod;