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,11 +71,11 @@
  * <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
+ * @since   1.1
  */
 public class ObjectStreamClass implements java.io.Serializable {
     private static final boolean DEBUG_SVUID = false ;
 
     public static final long kDefaultUID = -1;

@@ -257,11 +257,11 @@
     /**
      * 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
+     * @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,11 +881,11 @@
      *
      * @see ObjectOutputStream#useProtocolVersion
      * @see ObjectStreamConstants#PROTOCOL_VERSION_1
      * @see ObjectStreamConstants#PROTOCOL_VERSION_2
      *
-     * @since JDK 1.2
+     * @since  1.2
      */
     boolean hasExternalizableBlockDataMode() {
         return hasExternalizableBlockData;
     }
 

@@ -1517,11 +1517,11 @@
 
     /* 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
+     * @since  1.2
      */
     private boolean hasExternalizableBlockData;
     Method writeObjectMethod;
     Method readObjectMethod;
     private transient Method writeReplaceObjectMethod;