langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/HtmlTree.java
changeset 41157 b235a429089a
parent 40500 f293dbb81a53
child 42828 cce89649f958
equal deleted inserted replaced
41156:251471aec877 41157:b235a429089a
   806     public static HtmlTree TH(String scope, Content body) {
   806     public static HtmlTree TH(String scope, Content body) {
   807         return TH(null, scope, body);
   807         return TH(null, scope, body);
   808     }
   808     }
   809 
   809 
   810     /**
   810     /**
       
   811      * Generates a TH tag with style class, scope attribute and some content.
       
   812      *
       
   813      * @param styleClass style for the tag
       
   814      * @param body content for the tag
       
   815      * @return an HtmlTree object for the TH tag
       
   816      */
       
   817     public static HtmlTree TH_ROW_SCOPE(HtmlStyle styleClass, Content body) {
       
   818         return TH(styleClass, "row", body);
       
   819     }
       
   820 
       
   821     /**
   811      * Generates a TITLE tag with some content.
   822      * Generates a TITLE tag with some content.
   812      *
   823      *
   813      * @param body content for the tag
   824      * @param body content for the tag
   814      * @return an HtmlTree object for the TITLE tag
   825      * @return an HtmlTree object for the TITLE tag
   815      */
   826      */