langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/HtmlWriter.java
changeset 39670 9d1eafbf29c6
parent 36526 3b41f1c69604
child 40303 96a1226aca18
equal deleted inserted replaced
39601:5b37e511ae4b 39670:9d1eafbf29c6
    75      * Header for tables displaying packages and description..
    75      * Header for tables displaying packages and description..
    76      */
    76      */
    77     protected final List<String> packageTableHeader;
    77     protected final List<String> packageTableHeader;
    78 
    78 
    79     /**
    79     /**
       
    80      * Header for tables displaying modules and description..
       
    81      */
       
    82     protected final List<String> requiresTableHeader;
       
    83 
       
    84     /**
       
    85      * Header for tables displaying packages and description..
       
    86      */
       
    87     protected final List<String> exportedPackagesTableHeader;
       
    88 
       
    89     /**
       
    90      * Header for tables displaying types and description..
       
    91      */
       
    92     protected final List<String> usesTableHeader;
       
    93 
       
    94     /**
       
    95      * Header for tables displaying types and description..
       
    96      */
       
    97     protected final List<String> providesTableHeader;
       
    98 
       
    99     /**
    80      * Summary for use tables displaying class and package use.
   100      * Summary for use tables displaying class and package use.
    81      */
   101      */
    82     protected final String useTableSummary;
   102     protected final String useTableSummary;
    83 
   103 
    84     /**
   104     /**
   105     public final Content nextclassLabel;
   125     public final Content nextclassLabel;
   106 
   126 
   107     public final Content summaryLabel;
   127     public final Content summaryLabel;
   108 
   128 
   109     public final Content detailLabel;
   129     public final Content detailLabel;
       
   130 
       
   131     public final Content moduleSubNavLabel;
   110 
   132 
   111     public final Content framesLabel;
   133     public final Content framesLabel;
   112 
   134 
   113     public final Content noframesLabel;
   135     public final Content noframesLabel;
   114 
   136 
   190             configuration.getText("doclet.Module"),
   212             configuration.getText("doclet.Module"),
   191             configuration.getText("doclet.Description"));
   213             configuration.getText("doclet.Description"));
   192         packageTableHeader = new ArrayList<>();
   214         packageTableHeader = new ArrayList<>();
   193         packageTableHeader.add(configuration.getText("doclet.Package"));
   215         packageTableHeader.add(configuration.getText("doclet.Package"));
   194         packageTableHeader.add(configuration.getText("doclet.Description"));
   216         packageTableHeader.add(configuration.getText("doclet.Description"));
       
   217         requiresTableHeader = new ArrayList<>();
       
   218         requiresTableHeader.add(configuration.getText("doclet.Module"));
       
   219         requiresTableHeader.add(configuration.getText("doclet.Description"));
       
   220         exportedPackagesTableHeader = new ArrayList<>();
       
   221         exportedPackagesTableHeader.add(configuration.getText("doclet.Package"));
       
   222         exportedPackagesTableHeader.add(configuration.getText("doclet.Module"));
       
   223         exportedPackagesTableHeader.add(configuration.getText("doclet.Description"));
       
   224         usesTableHeader = new ArrayList<>();
       
   225         usesTableHeader.add(configuration.getText("doclet.Type"));
       
   226         usesTableHeader.add(configuration.getText("doclet.Description"));
       
   227         providesTableHeader = new ArrayList<>();
       
   228         providesTableHeader.add(configuration.getText("doclet.Type"));
       
   229         providesTableHeader.add(configuration.getText("doclet.Description"));
   195         useTableSummary = configuration.getText("doclet.Use_Table_Summary",
   230         useTableSummary = configuration.getText("doclet.Use_Table_Summary",
   196                 configuration.getText("doclet.packages"));
   231                 configuration.getText("doclet.packages"));
   197         modifierTypeHeader = configuration.getText("doclet.0_and_1",
   232         modifierTypeHeader = configuration.getText("doclet.0_and_1",
   198                 configuration.getText("doclet.Modifier"),
   233                 configuration.getText("doclet.Modifier"),
   199                 configuration.getText("doclet.Type"));
   234                 configuration.getText("doclet.Type"));
   206         nextLabel = getResource("doclet.Next");
   241         nextLabel = getResource("doclet.Next");
   207         prevclassLabel = getNonBreakResource("doclet.Prev_Class");
   242         prevclassLabel = getNonBreakResource("doclet.Prev_Class");
   208         nextclassLabel = getNonBreakResource("doclet.Next_Class");
   243         nextclassLabel = getNonBreakResource("doclet.Next_Class");
   209         summaryLabel = getResource("doclet.Summary");
   244         summaryLabel = getResource("doclet.Summary");
   210         detailLabel = getResource("doclet.Detail");
   245         detailLabel = getResource("doclet.Detail");
       
   246         moduleSubNavLabel = getResource("doclet.Module_Sub_Nav");
   211         framesLabel = getResource("doclet.Frames");
   247         framesLabel = getResource("doclet.Frames");
   212         noframesLabel = getNonBreakResource("doclet.No_Frames");
   248         noframesLabel = getNonBreakResource("doclet.No_Frames");
   213         treeLabel = getResource("doclet.Tree");
   249         treeLabel = getResource("doclet.Tree");
   214         classLabel = getResource("doclet.Class");
   250         classLabel = getResource("doclet.Class");
   215         deprecatedLabel = getResource("doclet.navDeprecated");
   251         deprecatedLabel = getResource("doclet.navDeprecated");