Lines Matching refs:HtmlTree

37 public class HtmlTree extends Content {
45 * Constructor to construct HtmlTree object.
47 * @param tag HTML tag for the HtmlTree object
49 public HtmlTree(HtmlTag tag) {
54 * Constructor to construct HtmlTree object.
56 * @param tag HTML tag for the HtmlTree object
59 public HtmlTree(HtmlTag tag, Content... contents) {
92 if (tagContent == HtmlTree.EMPTY || tagContent.isValid()) {
123 * @return an HtmlTree object
125 public static HtmlTree A(String ref, Content body) {
126 HtmlTree htmltree = new HtmlTree(HtmlTag.A, nullCheck(body));
136 * @return an HtmlTree object
138 public static HtmlTree A_NAME(String name, Content body) {
139 HtmlTree htmltree = HtmlTree.A_NAME(name);
148 * @return an HtmlTree object
150 public static HtmlTree A_NAME(String name) {
151 HtmlTree htmltree = new HtmlTree(HtmlTag.A);
160 * @return an HtmlTree object for the CAPTION tag
162 public static HtmlTree CAPTION(Content body) {
163 HtmlTree htmltree = new HtmlTree(HtmlTag.CAPTION, nullCheck(body));
171 * @return an HtmlTree object for the CODE tag
173 public static HtmlTree CODE(Content body) {
174 HtmlTree htmltree = new HtmlTree(HtmlTag.CODE, nullCheck(body));
182 * @return an HtmlTree object for the DD tag
184 public static HtmlTree DD(Content body) {
185 HtmlTree htmltree = new HtmlTree(HtmlTag.DD, nullCheck(body));
193 * @return an HtmlTree object for the DL tag
195 public static HtmlTree DL(Content body) {
196 HtmlTree htmltree = new HtmlTree(HtmlTag.DL, nullCheck(body));
206 * @return an HtmlTree object for the DIV tag
208 public static HtmlTree DIV(HtmlStyle styleClass, Content body) {
209 HtmlTree htmltree = new HtmlTree(HtmlTag.DIV, nullCheck(body));
219 * @return an HtmlTree object for the DIV tag
221 public static HtmlTree DIV(Content body) {
229 * @return an HtmlTree object for the DT tag
231 public static HtmlTree DT(Content body) {
232 HtmlTree htmltree = new HtmlTree(HtmlTag.DT, nullCheck(body));
240 * @return an HtmlTree object for the EM tag
242 public static HtmlTree EM(Content body) {
243 HtmlTree htmltree = new HtmlTree(HtmlTag.EM, nullCheck(body));
254 * @return an HtmlTree object for the FRAME tag
256 public static HtmlTree FRAME(String src, String name, String title, String scrolling) {
257 HtmlTree htmltree = new HtmlTree(HtmlTag.FRAME);
272 * @return an HtmlTree object for the SPAN tag
274 public static HtmlTree FRAME(String src, String name, String title) {
285 * @return an HtmlTree object for the FRAMESET tag
287 public static HtmlTree FRAMESET(String cols, String rows, String title, String onload) {
288 HtmlTree htmltree = new HtmlTree(HtmlTag.FRAMESET);
306 * @return an HtmlTree object for the tag
308 public static HtmlTree HEADING(HtmlTag headingTag, boolean printTitle,
310 HtmlTree htmltree = new HtmlTree(headingTag, nullCheck(body));
325 * @return an HtmlTree object for the tag
327 public static HtmlTree HEADING(HtmlTag headingTag, HtmlStyle styleClass, Content body) {
338 * @return an HtmlTree object for the tag
340 public static HtmlTree HEADING(HtmlTag headingTag, boolean printTitle, Content body) {
349 * @return an HtmlTree object for the tag
351 public static HtmlTree HEADING(HtmlTag headingTag, Content body) {
362 * @return an HtmlTree object for the HTML tag
364 public static HtmlTree HTML(String lang, Content head, Content body) {
365 HtmlTree htmltree = new HtmlTree(HtmlTag.HTML, nullCheck(head), nullCheck(body));
374 * @return an HtmlTree object for the I tag
376 public static HtmlTree I(Content body) {
377 HtmlTree htmltree = new HtmlTree(HtmlTag.I, nullCheck(body));
385 * @return an HtmlTree object for the LI tag
387 public static HtmlTree LI(Content body) {
396 * @return an HtmlTree object for the LI tag
398 public static HtmlTree LI(HtmlStyle styleClass, Content body) {
399 HtmlTree htmltree = new HtmlTree(HtmlTag.LI, nullCheck(body));
412 * @return an HtmlTree object for the LINK tag
414 public static HtmlTree LINK(String rel, String type, String href, String title) {
415 HtmlTree htmltree = new HtmlTree(HtmlTag.LINK);
429 * @return an HtmlTree object for the META tag
431 public static HtmlTree META(String httpEquiv, String content, String charSet) {
432 HtmlTree htmltree = new HtmlTree(HtmlTag.META);
444 * @return an HtmlTree object for the META tag
446 public static HtmlTree META(String name, String content) {
447 HtmlTree htmltree = new HtmlTree(HtmlTag.META);
457 * @return an HtmlTree object for the NOSCRIPT tag
459 public static HtmlTree NOSCRIPT(Content body) {
460 HtmlTree htmltree = new HtmlTree(HtmlTag.NOSCRIPT, nullCheck(body));
468 * @return an HtmlTree object for the P tag
470 public static HtmlTree P(Content body) {
479 * @return an HtmlTree object for the P tag
481 public static HtmlTree P(HtmlStyle styleClass, Content body) {
482 HtmlTree htmltree = new HtmlTree(HtmlTag.P, nullCheck(body));
492 * @return an HtmlTree object for the SMALL tag
494 public static HtmlTree SMALL(Content body) {
495 HtmlTree htmltree = new HtmlTree(HtmlTag.SMALL, nullCheck(body));
503 * @return an HtmlTree object for the STRONG tag
505 public static HtmlTree STRONG(Content body) {
506 HtmlTree htmltree = new HtmlTree(HtmlTag.STRONG, nullCheck(body));
514 * @return an HtmlTree object for the SPAN tag
516 public static HtmlTree SPAN(Content body) {
525 * @return an HtmlTree object for the SPAN tag
527 public static HtmlTree SPAN(HtmlStyle styleClass, Content body) {
528 HtmlTree htmltree = new HtmlTree(HtmlTag.SPAN, nullCheck(body));
542 * @return an HtmlTree object for the TABLE tag
544 public static HtmlTree TABLE(int border, int width, String summary,
546 HtmlTree htmltree = new HtmlTree(HtmlTag.TABLE, nullCheck(body));
563 * @return an HtmlTree object for the TABLE tag
565 public static HtmlTree TABLE(HtmlStyle styleClass, int border, int cellPadding,
567 HtmlTree htmltree = new HtmlTree(HtmlTag.TABLE, nullCheck(body));
586 * @return an HtmlTree object for the TABLE tag
588 public static HtmlTree TABLE(int border, int cellPadding,
598 * @return an HtmlTree object for the TD tag
600 public static HtmlTree TD(HtmlStyle styleClass, Content body) {
601 HtmlTree htmltree = new HtmlTree(HtmlTag.TD, nullCheck(body));
611 * @return an HtmlTree object for the TD tag
613 public static HtmlTree TD(Content body) {
623 * @return an HtmlTree object for the TH tag
625 public static HtmlTree TH(HtmlStyle styleClass, String scope, Content body) {
626 HtmlTree htmltree = new HtmlTree(HtmlTag.TH, nullCheck(body));
638 * @return an HtmlTree object for the TH tag
640 public static HtmlTree TH(String scope, Content body) {
648 * @return an HtmlTree object for the TITLE tag
650 public static HtmlTree TITLE(Content body) {
651 HtmlTree htmltree = new HtmlTree(HtmlTag.TITLE, nullCheck(body));
659 * @return an HtmlTree object for the TR tag
661 public static HtmlTree TR(Content body) {
662 HtmlTree htmltree = new HtmlTree(HtmlTag.TR, nullCheck(body));
671 * @return an HtmlTree object for the UL tag
673 public static HtmlTree UL(HtmlStyle styleClass, Content body) {
674 HtmlTree htmltree = new HtmlTree(HtmlTag.UL, nullCheck(body));