< prev index next >

src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/JType.java

Print this page

        

@@ -114,20 +114,21 @@
     public boolean isPrimitive() {
         return false;
     }
 
     /**
-     * If this class is a primitive type, return the boxed class. Otherwise return <tt>this</tt>.
+     * If this class is a primitive type, return the boxed class.
+     * Otherwise return {@code this}.
      *
      * <p>
      * For example, for "int", this method returns "java.lang.Integer".
      */
     public abstract JClass boxify();
 
     /**
      * If this class is a wrapper type for a primitive, return the primitive type.
-     * Otherwise return <tt>this</tt>.
+     * Otherwise return {@code this}.
      *
      * <p>
      * For example, for "java.lang.Integer", this method returns "int".
      */
     public abstract JType unboxify();
< prev index next >