< prev index next >

src/java.management/share/classes/java/lang/management/LockInfo.java

Print this page

        

@@ -41,11 +41,11 @@
  * {@link ReentrantLock ReentrantLock} and
  * {@link ReentrantReadWriteLock ReentrantReadWriteLock} are
  * two examples of ownable synchronizers provided by the platform.
  *
  * <h3><a name="MappedType">MXBean Mapping</a></h3>
- * <tt>LockInfo</tt> is mapped to a {@link CompositeData CompositeData}
+ * {@code LockInfo} is mapped to a {@link CompositeData CompositeData}
  * as specified in the {@link #from from} method.
  *
  * @see java.util.concurrent.locks.AbstractOwnableSynchronizer
  * @see java.util.concurrent.locks.Condition
  *

@@ -57,11 +57,11 @@
 
     private String className;
     private int    identityHashCode;
 
     /**
-     * Constructs a <tt>LockInfo</tt> object.
+     * Constructs a {@code LockInfo} object.
      *
      * @param className the fully qualified name of the class of the lock object.
      * @param identityHashCode the {@link System#identityHashCode
      *                         identity hash code} of the lock object.
      */

@@ -110,15 +110,15 @@
      *   <th align=left>Attribute Name</th>
      *   <th align=left>Type</th>
      * </tr>
      * <tr>
      *   <td>className</td>
-     *   <td><tt>java.lang.String</tt></td>
+     *   <td>{@code java.lang.String}</td>
      * </tr>
      * <tr>
      *   <td>identityHashCode</td>
-     *   <td><tt>java.lang.Integer</tt></td>
+     *   <td>{@code java.lang.Integer}</td>
      * </tr>
      * </table>
      * </blockquote>
      *
      * @param cd {@code CompositeData} representing a {@code LockInfo}

@@ -152,11 +152,11 @@
      * of the object.  This method returns a string equals to the value of:
      * <blockquote>
      * <pre>
      * lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))
      * </pre></blockquote>
-     * where <tt>lock</tt> is the lock object.
+     * where {@code lock} is the lock object.
      *
      * @return the string representation of a lock.
      */
     public String toString() {
         return className + '@' + Integer.toHexString(identityHashCode);
< prev index next >