< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/links/LinkInfo.java

Print this page

        

@@ -70,16 +70,10 @@
      * Set this to true to indicate that you are linking to a type parameter.
      */
     public boolean isTypeBound = false;
 
     /**
-     * Whether the document element is in a Java 5 declaration
-     * location or not.
-     */
-    public boolean isJava5DeclarationLocation = true;
-
-    /**
      * The label for the link.
      */
     public Content label;
 
     /**

@@ -159,11 +153,10 @@
         return "LinkInfo{" + "typeElement=" + typeElement +
                 ", executableElement=" + executableElement +
                 ", type=" + type +
                 ", isVarArg=" + isVarArg +
                 ", isTypeBound=" + isTypeBound +
-                ", isJava5DeclarationLocation=" + isJava5DeclarationLocation +
                 ", label=" + label +
                 ", isStrong=" + isStrong +
                 ", includeTypeInClassLinkLabel=" + includeTypeInClassLinkLabel +
                 ", includeTypeAsSepLink=" + includeTypeAsSepLink +
                 ", excludeTypeBounds=" + excludeTypeBounds +
< prev index next >