< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/LinkInfoImpl.java

Print this page




 198         CLASS_TREE_PARENT,
 199 
 200         /**
 201          * The type parameters of a method or constructor.
 202          */
 203         MEMBER_TYPE_PARAMS,
 204 
 205         /**
 206          * Indicate that the link appears in class use documentation.
 207          */
 208         CLASS_USE_HEADER,
 209 
 210         /**
 211          * The header for property documentation copied from parent.
 212          */
 213         PROPERTY_COPY,
 214 
 215         /**
 216          * A receiver type
 217          */
 218         RECEIVER_TYPE





 219     }
 220 
 221     public final HtmlConfiguration configuration;
 222 
 223     /**
 224      * The location of the link.
 225      */
 226     public Kind context = Kind.DEFAULT;
 227 
 228     /**
 229      * The value of the marker #.
 230      */
 231     public String where = "";
 232 
 233     /**
 234      * The value of the target.
 235      */
 236     public String target = "";
 237     public  final Utils utils;
 238     /**




 198         CLASS_TREE_PARENT,
 199 
 200         /**
 201          * The type parameters of a method or constructor.
 202          */
 203         MEMBER_TYPE_PARAMS,
 204 
 205         /**
 206          * Indicate that the link appears in class use documentation.
 207          */
 208         CLASS_USE_HEADER,
 209 
 210         /**
 211          * The header for property documentation copied from parent.
 212          */
 213         PROPERTY_COPY,
 214 
 215         /**
 216          * A receiver type
 217          */
 218         RECEIVER_TYPE,
 219 
 220         /**
 221          * A record component within a class signature
 222          */
 223         RECORD_COMPONENT
 224     }
 225 
 226     public final HtmlConfiguration configuration;
 227 
 228     /**
 229      * The location of the link.
 230      */
 231     public Kind context = Kind.DEFAULT;
 232 
 233     /**
 234      * The value of the marker #.
 235      */
 236     public String where = "";
 237 
 238     /**
 239      * The value of the target.
 240      */
 241     public String target = "";
 242     public  final Utils utils;
 243     /**


< prev index next >