< prev index next >

src/java.management/share/classes/javax/management/MBeanAttributeInfo.java

Print this page

        

@@ -90,11 +90,11 @@
      */
     private final boolean is;
 
 
     /**
-     * Constructs an <CODE>MBeanAttributeInfo</CODE> object.
+     * Constructs an {@code MBeanAttributeInfo} object.
      *
      * @param name The name of the attribute.
      * @param type The type or class name of the attribute.
      * @param description A human readable description of the attribute.
      * @param isReadable True if the attribute has a getter method, false otherwise.

@@ -116,11 +116,11 @@
         this(name, type, description, isReadable, isWritable, isIs,
              (Descriptor) null);
     }
 
     /**
-     * Constructs an <CODE>MBeanAttributeInfo</CODE> object.
+     * Constructs an {@code MBeanAttributeInfo} object.
      *
      * @param name The name of the attribute.
      * @param type The type or class name of the attribute.
      * @param description A human readable description of the attribute.
      * @param isReadable True if the attribute has a getter method, false otherwise.

@@ -191,13 +191,13 @@
                                    Introspector.descriptorForElement(setter)));
     }
 
     /**
      * <p>Returns a shallow clone of this instance.
-     * The clone is obtained by simply calling <tt>super.clone()</tt>,
+     * The clone is obtained by simply calling {@code super.clone()},
      * thus calling the default native shallow cloning mechanism
-     * implemented by <tt>Object.clone()</tt>.
+     * implemented by {@code Object.clone()}.
      * No deeper cloning of any internal field is made.</p>
      *
      * <p>Since this class is immutable, cloning is chiefly of
      * interest to subclasses.</p>
      */

@@ -272,11 +272,11 @@
     /**
      * Compare this MBeanAttributeInfo to another.
      *
      * @param o the object to compare to.
      *
-     * @return true if and only if <code>o</code> is an MBeanAttributeInfo such
+     * @return true if and only if {@code o} is an MBeanAttributeInfo such
      * that its {@link #getName()}, {@link #getType()}, {@link
      * #getDescription()}, {@link #isReadable()}, {@link
      * #isWritable()}, and {@link #isIs()} values are equal (not
      * necessarily identical) to those of this MBeanAttributeInfo.
      */
< prev index next >