| Package | Description |
|---|---|
| com.github.beothorn.html.elements |
| Modifier and Type | Class and Description |
|---|---|
class |
Br |
class |
Text |
| Modifier and Type | Method and Description |
|---|---|
static DomElement |
Page.b(Renderable... childrenElements)
The HTML <b> Element represents a span of text stylistically
different from normal text, without conveying any special importance or relevance.
|
static DomElement |
Page.b(String text)
The HTML <b> Element represents a span of text stylistically
different from normal text, without conveying any special importance or relevance.
|
static DomElement |
Page.body(DomElement... childrenElements)
The HTML <body> Element represents the content of an HTML document.
|
static DomElement |
Page.br()
The HTML element line break <br> produces a
line break in text (carriage-return).
|
static DomElement |
Page.button(DomElement... childrenElements)
The HTML <button> Element represents a clickable button.
|
static DomElement |
Page.div(DomElement... childrenElements)
The HTML <div> element (or HTML Document Division
Element) is the generic container for flow content, which does not inherently represent
anything.
|
static DomElement |
Page.div(List<Attribute> props,
List<DomElement> childrenElements)
The HTML <div> element (or HTML Document Division
Element) is the generic container for flow content, which does not inherently represent
anything.
|
static DomElement |
Page.h1(String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.h2(String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.h3(String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.h4(String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.h5(String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.h6(String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.header(Page.Header header,
DomElement... childrenElements)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.header(Page.Header header,
String title)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static DomElement |
Page.img(DomElement... childrenElements)
The HTML <img> element represents an image in the document.
|
static DomElement |
Page.img(List<Attribute> props,
List<DomElement> childrenElements)
The HTML <img> element represents an image in the document.
|
DomElement |
DomElement.onClick(String onclickFunction)
The onclick property returns the click event handler code on the current element.
|
static DomElement |
Page.p(DomElement... childrenElements)
The HTML <p> element (or HTML Paragraph Element)
represents a paragraph of text.
|
static DomElement |
Page.p(List<Attribute> props,
List<DomElement> childrenElements)
The HTML <p> element (or HTML Paragraph Element)
represents a paragraph of text.
|
| Modifier and Type | Method and Description |
|---|---|
static List<DomElement> |
Page.content(DomElement... childrenElements)
Shortcut to join multiple renderables on a single list.
|
| Modifier and Type | Method and Description |
|---|---|
static DomElement |
Page.body(DomElement... childrenElements)
The HTML <body> Element represents the content of an HTML document.
|
static DomElement |
Page.button(DomElement... childrenElements)
The HTML <button> Element represents a clickable button.
|
static List<DomElement> |
Page.content(DomElement... childrenElements)
Shortcut to join multiple renderables on a single list.
|
static DomElement |
Page.div(DomElement... childrenElements)
The HTML <div> element (or HTML Document Division
Element) is the generic container for flow content, which does not inherently represent
anything.
|
static DomElement |
Page.header(Page.Header header,
DomElement... childrenElements)
Heading elements implement six levels of document headings, <h1>
is the most important and <h6> is the least.
|
static Renderable |
Page.html(DomElement... childrenElements)
The HTML <html> element (or HTML root element)
represents the root of an HTML document.
|
static DomElement |
Page.img(DomElement... childrenElements)
The HTML <img> element represents an image in the document.
|
static DomElement |
Page.p(DomElement... childrenElements)
The HTML <p> element (or HTML Paragraph Element)
represents a paragraph of text.
|
| Modifier and Type | Method and Description |
|---|---|
static DomElement |
Page.div(List<Attribute> props,
List<DomElement> childrenElements)
The HTML <div> element (or HTML Document Division
Element) is the generic container for flow content, which does not inherently represent
anything.
|
static DomElement |
Page.img(List<Attribute> props,
List<DomElement> childrenElements)
The HTML <img> element represents an image in the document.
|
static DomElement |
Page.p(List<Attribute> props,
List<DomElement> childrenElements)
The HTML <p> element (or HTML Paragraph Element)
represents a paragraph of text.
|
Copyright © 2016. All rights reserved.