Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.apt.core/src/com/sun/mirror/type/ClassType.java')
-rw-r--r--org.eclipse.jdt.apt.core/src/com/sun/mirror/type/ClassType.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.apt.core/src/com/sun/mirror/type/ClassType.java b/org.eclipse.jdt.apt.core/src/com/sun/mirror/type/ClassType.java
index a622cac883..118d79519d 100644
--- a/org.eclipse.jdt.apt.core/src/com/sun/mirror/type/ClassType.java
+++ b/org.eclipse.jdt.apt.core/src/com/sun/mirror/type/ClassType.java
@@ -41,7 +41,7 @@ import com.sun.mirror.declaration.*;
* Note that an {@linkplain EnumType enum} is a kind of class.
*
* <p> While a {@link ClassDeclaration} represents the <i>declaration</i>
- * of a class, a <tt>ClassType</tt> represents a class <i>type</i>.
+ * of a class, a <code>ClassType</code> represents a class <i>type</i>.
* See {@link TypeDeclaration} for more on this distinction.
*
* @author Joseph D. Darcy
@@ -62,15 +62,15 @@ public interface ClassType extends DeclaredType {
* Returns the class type that is a direct supertype of this one.
* This is the superclass of this type's declaring class, with any
* type arguments substituted in.
- * The only class with no superclass is <tt>java.lang.Object</tt>,
- * for which this method returns <tt>null</tt>.
+ * The only class with no superclass is <code>java.lang.Object</code>,
+ * for which this method returns <code>null</code>.
*
* <p> For example, the class type extended by
* {@code java.util.TreeSet<String>} is
* {@code java.util.AbstractSet<String>}.
*
* @return the class type that is a direct supertype of this one,
- * or <tt>null</tt> if there is none
+ * or <code>null</code> if there is none
*/
ClassType getSuperclass();
}

Back to the top