< prev index next >
src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/links/LinkInfo.java
Print this page
*** 70,85 ****
* 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;
/**
--- 70,79 ----
*** 159,169 ****
return "LinkInfo{" + "typeElement=" + typeElement +
", executableElement=" + executableElement +
", type=" + type +
", isVarArg=" + isVarArg +
", isTypeBound=" + isTypeBound +
- ", isJava5DeclarationLocation=" + isJava5DeclarationLocation +
", label=" + label +
", isStrong=" + isStrong +
", includeTypeInClassLinkLabel=" + includeTypeInClassLinkLabel +
", includeTypeAsSepLink=" + includeTypeAsSepLink +
", excludeTypeBounds=" + excludeTypeBounds +
--- 153,162 ----
< prev index next >