src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AbstractIndexWriter.java
changeset 59294 48b88b9c11eb
parent 54610 a9ab154b1384
equal deleted inserted replaced
59293:5af9fa90cd7b 59294:48b88b9c11eb
    90     protected AbstractIndexWriter(HtmlConfiguration configuration,
    90     protected AbstractIndexWriter(HtmlConfiguration configuration,
    91                                   DocPath path,
    91                                   DocPath path,
    92                                   IndexBuilder indexbuilder) {
    92                                   IndexBuilder indexbuilder) {
    93         super(configuration, path);
    93         super(configuration, path);
    94         this.indexbuilder = indexbuilder;
    94         this.indexbuilder = indexbuilder;
    95         this.navBar = new Navigation(null, configuration, fixedNavDiv, PageMode.INDEX, path);
    95         this.navBar = new Navigation(null, configuration, PageMode.INDEX, path);
    96     }
    96     }
    97 
    97 
    98     /**
    98     /**
    99      * Add the member information for the unicode character along with the
    99      * Add the member information for the unicode character along with the
   100      * list of the members.
   100      * list of the members.
   417      *
   417      *
   418      * @param anchorNameForIndex the anchor name attribute for index page
   418      * @param anchorNameForIndex the anchor name attribute for index page
   419      * @return a content tree for the marker anchor
   419      * @return a content tree for the marker anchor
   420      */
   420      */
   421     public Content getMarkerAnchorForIndex(String anchorNameForIndex) {
   421     public Content getMarkerAnchorForIndex(String anchorNameForIndex) {
   422         return links.createAnchor(getNameForIndex(anchorNameForIndex), null);
   422         return links.createAnchor(getNameForIndex(anchorNameForIndex));
   423     }
   423     }
   424 
   424 
   425     /**
   425     /**
   426      * Generate a valid HTML name for member index page.
   426      * Generate a valid HTML name for member index page.
   427      *
   427      *