Lines Matching defs:content

41     private List<Content> content = Collections.<Content>emptyList();
61 for (Content content: contents)
62 addContent(content);
87 * Adds content for the HTML tag.
89 * @param tagContent tag content to be added
93 if (content.isEmpty())
94 content = new ArrayList<Content>();
95 content.add(tagContent);
100 * This method adds a string content to the htmltree. If the last content member
104 * @param stringContent string content that needs to be added
107 if (!content.isEmpty()) {
108 Content lastContent = content.get(content.size() - 1);
122 * @param body content for the anchor tag
132 * Generates an HTML anchor tag with name attribute and content.
135 * @param body content for the anchor tag
157 * Generates a CAPTION tag with some content.
159 * @param body content for the tag
168 * Generates a CODE tag with some content.
170 * @param body content for the tag
179 * Generates a DD tag with some content.
181 * @param body content for the tag
190 * Generates a DL tag with some content.
192 * @param body content for the tag
202 * a content.
205 * @param body content for the tag
216 * Generates a DIV tag with some content.
218 * @param body content for the tag
226 * Generates a DT tag with some content.
228 * @param body content for the tag
237 * Generates a EM tag with some content.
239 * @param body content to be added to the tag
300 * a content.
305 * @param body content for the tag
320 * a content.
324 * @param body content for the tag
333 * a content.
337 * @param body content for the tag
345 * Generates a heading tag (h1 to h6) with some content.
348 * @param body content for the tag
357 * content to the HTML tree.
371 * Generates a I tag with some content.
373 * @param body content for the tag
382 * Generates a LI tag with some content.
384 * @param body content for the tag
392 * Generates a LI tag with some content.
395 * @param body content for the tag
424 * Generates a META tag with the http-equiv, content and charset attributes.
427 * @param content type of content
431 public static HtmlTree META(String httpEquiv, String content, String charSet) {
434 htmltree.addAttr(HtmlAttr.CONTENT, nullCheck(content));
440 * Generates a META tag with the name and content attributes.
443 * @param content type of content
446 public static HtmlTree META(String name, String content) {
449 htmltree.addAttr(HtmlAttr.CONTENT, nullCheck(content));
454 * Generates a NOSCRIPT tag with some content.
456 * @param body content of the noscript tag
465 * Generates a P tag with some content.
467 * @param body content of the Paragraph tag
475 * Generates a P tag with some content.
478 * @param body content of the Paragraph tag
489 * Generates a SMALL tag with some content.
491 * @param body content for the tag
500 * Generates a STRONG tag with some content.
502 * @param body content for the tag
511 * Generates a SPAN tag with some content.
513 * @param body content for the tag
521 * Generates a SPAN tag with style class attribute and some content.
524 * @param body content for the tag
536 * some content.
541 * @param body content for the table
555 * cellspacing and summary attributes and some content.
562 * @param body content for the table
579 * cellspacing and summary attributes and some content.
585 * @param body content for the table
594 * Generates a TD tag with style class attribute and some content.
597 * @param body content for the tag
608 * Generates a TD tag for an HTML table with some content.
610 * @param body content for the tag
618 * Generates a TH tag with style class and scope attributes and some content.
622 * @param body content for the tag
634 * Generates a TH tag with scope attribute and some content.
637 * @param body content for the tag
645 * Generates a TITLE tag with some content.
647 * @param body content for the tag
656 * Generates a TR tag for an HTML table with some content.
658 * @param body content for the tag
667 * Generates a UL tag with the style class attribute and some content.
670 * @param body content for the tag
687 * Returns true if the HTML tree has content.
689 * @return true if the HTML tree has content else return false
692 return (!content.isEmpty());
775 for (Content c : content)