public class Html extends HtmlBuilder<Html>
Example:
new Html(writer) {{ html().head(); title().text("Hello").end(); h1().id("title").text("World").end(); done(); }};
If you would like to extend an HTML builder DO NOT INHERIT FROM THIS CLASS.
Instead inherit from HtmlBuilder
and parameterize with the name of your custom builder.
MarkupBuilder.TagClosingPolicy
indentOff, indentOn, indentSameLine
Constructor and Description |
---|
Html(MarkupBuilder<?> builder)
|
Html(MarkupBuilder<?> builder,
boolean nested)
|
Html(Writer writer)
|
Modifier and Type | Method and Description |
---|---|
T |
a()
Starts the <a> tag.
|
T |
abbr()
Starts the <abbr> tag.
|
T |
abbr(String value)
Sets the
abbr attribute on the last started tag that
has not been closed. |
T |
accept(String value)
Sets the
accept attribute on the last started tag that
has not been closed. |
T |
acceptCharset(String value)
Sets the
accept-charset attribute on the last started tag that
has not been closed. |
T |
accesskey(String value)
Sets the
accesskey attribute on the last started tag that
has not been closed. |
T |
acronym()
Starts the <acronym> tag.
|
T |
action(String value)
Sets the
action attribute on the last started tag that
has not been closed. |
T |
address()
Starts the <address> tag.
|
T |
align(String value)
Sets the
align attribute on the last started tag that
has not been closed. |
T |
alink(String value)
Sets the
alink attribute on the last started tag that
has not been closed. |
T |
alt(String value)
Sets the
alt attribute on the last started tag that
has not been closed. |
T |
applet()
Starts the <applet> tag.
|
T |
archive(String value)
Sets the
archive attribute on the last started tag that
has not been closed. |
T |
area()
Starts the <area> tag.
|
T |
axis(String value)
Sets the
axis attribute on the last started tag that
has not been closed. |
T |
b()
Starts the <b> tag.
|
T |
background(String value)
Sets the
background attribute on the last started tag that
has not been closed. |
T |
base()
Starts the <base> tag.
|
T |
basefont()
Starts the <basefont> tag.
|
T |
bdo()
Starts the <bdo> tag.
|
T |
bgcolor(String value)
Sets the
bgcolor attribute on the last started tag that
has not been closed. |
T |
big()
Starts the <big> tag.
|
T |
blockquote()
Starts the <blockquote> tag.
|
T |
body()
Starts the <body> tag.
|
T |
border(String value)
Sets the
border attribute on the last started tag that
has not been closed. |
T |
br()
Starts the <br> tag.
|
T |
button()
Starts the <button> tag.
|
T |
caption()
Starts the <caption> tag.
|
T |
cellpadding(String value)
Sets the
cellpadding attribute on the last started tag that
has not been closed. |
T |
cellspacing(String value)
Sets the
cellspacing attribute on the last started tag that
has not been closed. |
T |
center()
Starts the <center> tag.
|
T |
charAttr(String value)
Sets the
char attribute on the last started tag that
has not been closed. |
T |
charoff(String value)
Sets the
charoff attribute on the last started tag that
has not been closed. |
T |
charset(String value)
Sets the
charset attribute on the last started tag that
has not been closed. |
T |
checked(String value)
Sets the
checked attribute on the last started tag that
has not been closed. |
T |
cite()
Starts the <cite> tag.
|
T |
cite(String value)
Sets the
cite attribute on the last started tag that
has not been closed. |
T |
classAttr(String value)
Sets the
class attribute on the last started tag that
has not been closed. |
T |
classid(String value)
Sets the
classid attribute on the last started tag that
has not been closed. |
T |
clear(String value)
Sets the
clear attribute on the last started tag that
has not been closed. |
T |
code()
Starts the <code> tag.
|
T |
code(String value)
Sets the
code attribute on the last started tag that
has not been closed. |
T |
codebase(String value)
Sets the
codebase attribute on the last started tag that
has not been closed. |
T |
codetype(String value)
Sets the
codetype attribute on the last started tag that
has not been closed. |
T |
col()
Starts the <col> tag.
|
T |
colgroup()
Starts the <colgroup> tag.
|
T |
color(String value)
Sets the
color attribute on the last started tag that
has not been closed. |
T |
cols(String value)
Sets the
cols attribute on the last started tag that
has not been closed. |
T |
colspan(String value)
Sets the
colspan attribute on the last started tag that
has not been closed. |
T |
compact(String value)
Sets the
compact attribute on the last started tag that
has not been closed. |
T |
content(String value)
Sets the
content attribute on the last started tag that
has not been closed. |
T |
coords(String value)
Sets the
coords attribute on the last started tag that
has not been closed. |
T |
data(String value)
Sets the
data attribute on the last started tag that
has not been closed. |
T |
datetime(String value)
Sets the
datetime attribute on the last started tag that
has not been closed. |
T |
dd()
Starts the <dd> tag.
|
T |
declare(String value)
Sets the
declare attribute on the last started tag that
has not been closed. |
T |
defer(String value)
Sets the
defer attribute on the last started tag that
has not been closed. |
T |
del()
Starts the <del> tag.
|
T |
dfn()
Starts the <dfn> tag.
|
T |
dir()
Starts the <dir> tag.
|
T |
dir(String value)
Sets the
dir attribute on the last started tag that
has not been closed. |
T |
disabled(String value)
Sets the
disabled attribute on the last started tag that
has not been closed. |
T |
div()
Starts the <div> tag.
|
T |
dl()
Starts the <dl> tag.
|
T |
dt()
Starts the <dt> tag.
|
T |
em()
Starts the <em> tag.
|
T |
enctype(String value)
Sets the
enctype attribute on the last started tag that
has not been closed. |
T |
face(String value)
Sets the
face attribute on the last started tag that
has not been closed. |
T |
fieldset()
Starts the <fieldset> tag.
|
T |
font()
Starts the <font> tag.
|
T |
forAttr(String value)
Sets the
for attribute on the last started tag that
has not been closed. |
T |
form()
Starts the <form> tag.
|
T |
frame(String value)
Sets the
frame attribute on the last started tag that
has not been closed. |
T |
frameborder(String value)
Sets the
frameborder attribute on the last started tag that
has not been closed. |
protected Html |
getSelf()
Needed for fluent style and Java parameterization limitations.
|
T |
h1()
Starts the <h1> tag.
|
T |
h2()
Starts the <h2> tag.
|
T |
h3()
Starts the <h3> tag.
|
T |
h4()
Starts the <h4> tag.
|
T |
h5()
Starts the <h5> tag.
|
T |
h6()
Starts the <h6> tag.
|
T |
head()
Starts the <head> tag.
|
T |
headers(String value)
Sets the
headers attribute on the last started tag that
has not been closed. |
T |
height(String value)
Sets the
height attribute on the last started tag that
has not been closed. |
T |
hr()
Starts the <hr> tag.
|
T |
href(String value)
Sets the
href attribute on the last started tag that
has not been closed. |
T |
hreflang(String value)
Sets the
hreflang attribute on the last started tag that
has not been closed. |
T |
hspace(String value)
Sets the
hspace attribute on the last started tag that
has not been closed. |
T |
html()
Starts the <html> tag.
|
T |
httpEquiv(String value)
Sets the
http-equiv attribute on the last started tag that
has not been closed. |
T |
i()
Starts the <i> tag.
|
T |
id(String value)
Sets the
id attribute on the last started tag that
has not been closed. |
T |
iframe()
Starts the <iframe> tag.
|
T |
img()
Starts the <img> tag.
|
T |
input()
Starts the <input> tag.
|
T |
ins()
Starts the <ins> tag.
|
T |
isindex()
Starts the <isindex> tag.
|
T |
ismap(String value)
Sets the
ismap attribute on the last started tag that
has not been closed. |
T |
kbd()
Starts the <kbd> tag.
|
T |
label()
Starts the <label> tag.
|
T |
label(String value)
Sets the
label attribute on the last started tag that
has not been closed. |
T |
lang(String value)
Sets the
lang attribute on the last started tag that
has not been closed. |
T |
language(String value)
Sets the
language attribute on the last started tag that
has not been closed. |
T |
legend()
Starts the <legend> tag.
|
T |
li()
Starts the <li> tag.
|
T |
link()
Starts the <link> tag.
|
T |
link(String value)
Sets the
link attribute on the last started tag that
has not been closed. |
T |
longdesc(String value)
Sets the
longdesc attribute on the last started tag that
has not been closed. |
T |
map()
Starts the <map> tag.
|
T |
marginheight(String value)
Sets the
marginheight attribute on the last started tag that
has not been closed. |
T |
marginwidth(String value)
Sets the
marginwidth attribute on the last started tag that
has not been closed. |
T |
maxlength(String value)
Sets the
maxlength attribute on the last started tag that
has not been closed. |
T |
media(String value)
Sets the
media attribute on the last started tag that
has not been closed. |
T |
menu()
Starts the <menu> tag.
|
T |
meta()
Starts the <meta> tag.
|
T |
method(String value)
Sets the
method attribute on the last started tag that
has not been closed. |
T |
multiple(String value)
Sets the
multiple attribute on the last started tag that
has not been closed. |
T |
name(String value)
Sets the
name attribute on the last started tag that
has not been closed. |
T |
noframes()
Starts the <noframes> tag.
|
T |
nohref(String value)
Sets the
nohref attribute on the last started tag that
has not been closed. |
T |
noscript()
Starts the <noscript> tag.
|
T |
noshade(String value)
Sets the
noshade attribute on the last started tag that
has not been closed. |
T |
nowrap(String value)
Sets the
nowrap attribute on the last started tag that
has not been closed. |
T |
object()
Starts the <object> tag.
|
T |
object(String value)
Sets the
object attribute on the last started tag that
has not been closed. |
T |
ol()
Starts the <ol> tag.
|
T |
onblur(String value)
Sets the
onblur attribute on the last started tag that
has not been closed. |
T |
onchange(String value)
Sets the
onchange attribute on the last started tag that
has not been closed. |
T |
onclick(String value)
Sets the
onclick attribute on the last started tag that
has not been closed. |
T |
ondblclick(String value)
Sets the
ondblclick attribute on the last started tag that
has not been closed. |
T |
onfocus(String value)
Sets the
onfocus attribute on the last started tag that
has not been closed. |
T |
onkeydown(String value)
Sets the
onkeydown attribute on the last started tag that
has not been closed. |
T |
onkeypress(String value)
Sets the
onkeypress attribute on the last started tag that
has not been closed. |
T |
onkeyup(String value)
Sets the
onkeyup attribute on the last started tag that
has not been closed. |
T |
onload(String value)
Sets the
onload attribute on the last started tag that
has not been closed. |
T |
onmousedown(String value)
Sets the
onmousedown attribute on the last started tag that
has not been closed. |
T |
onmousemove(String value)
Sets the
onmousemove attribute on the last started tag that
has not been closed. |
T |
onmouseout(String value)
Sets the
onmouseout attribute on the last started tag that
has not been closed. |
T |
onmouseover(String value)
Sets the
onmouseover attribute on the last started tag that
has not been closed. |
T |
onmouseup(String value)
Sets the
onmouseup attribute on the last started tag that
has not been closed. |
T |
onreset(String value)
Sets the
onreset attribute on the last started tag that
has not been closed. |
T |
onselect(String value)
Sets the
onselect attribute on the last started tag that
has not been closed. |
T |
onsubmit(String value)
Sets the
onsubmit attribute on the last started tag that
has not been closed. |
T |
onunload(String value)
Sets the
onunload attribute on the last started tag that
has not been closed. |
T |
optgroup()
Starts the <optgroup> tag.
|
T |
option()
Starts the <option> tag.
|
T |
p()
Starts the <p> tag.
|
T |
param()
Starts the <param> tag.
|
T |
pre()
Starts the <pre> tag.
|
T |
profile(String value)
Sets the
profile attribute on the last started tag that
has not been closed. |
T |
prompt(String value)
Sets the
prompt attribute on the last started tag that
has not been closed. |
T |
q()
Starts the <q> tag.
|
T |
readonly(String value)
Sets the
readonly attribute on the last started tag that
has not been closed. |
T |
rel(String value)
Sets the
rel attribute on the last started tag that
has not been closed. |
T |
rev(String value)
Sets the
rev attribute on the last started tag that
has not been closed. |
T |
rows(String value)
Sets the
rows attribute on the last started tag that
has not been closed. |
T |
rowspan(String value)
Sets the
rowspan attribute on the last started tag that
has not been closed. |
T |
rules(String value)
Sets the
rules attribute on the last started tag that
has not been closed. |
T |
s()
Starts the <s> tag.
|
T |
samp()
Starts the <samp> tag.
|
T |
scheme(String value)
Sets the
scheme attribute on the last started tag that
has not been closed. |
T |
scope(String value)
Sets the
scope attribute on the last started tag that
has not been closed. |
T |
script()
Starts the <script> tag.
|
T |
scrolling(String value)
Sets the
scrolling attribute on the last started tag that
has not been closed. |
T |
select()
Starts the <select> tag.
|
T |
selected(String value)
Sets the
selected attribute on the last started tag that
has not been closed. |
T |
shape(String value)
Sets the
shape attribute on the last started tag that
has not been closed. |
T |
size(String value)
Sets the
size attribute on the last started tag that
has not been closed. |
T |
small()
Starts the <small> tag.
|
T |
span()
Starts the <span> tag.
|
T |
span(String value)
Sets the
span attribute on the last started tag that
has not been closed. |
T |
src(String value)
Sets the
src attribute on the last started tag that
has not been closed. |
T |
standby(String value)
Sets the
standby attribute on the last started tag that
has not been closed. |
T |
startAttr(String value)
Sets the
start attribute on the last started tag that
has not been closed. |
T |
strike()
Starts the <strike> tag.
|
T |
strong()
Starts the <strong> tag.
|
T |
style()
Starts the <style> tag.
|
T |
style(String value)
Sets the
style attribute on the last started tag that
has not been closed. |
T |
sub()
Starts the <sub> tag.
|
T |
summary(String value)
Sets the
summary attribute on the last started tag that
has not been closed. |
T |
sup()
Starts the <sup> tag.
|
T |
tabindex(String value)
Sets the
tabindex attribute on the last started tag that
has not been closed. |
T |
table()
Starts the <table> tag.
|
T |
target(String value)
Sets the
target attribute on the last started tag that
has not been closed. |
T |
tbody()
Starts the <tbody> tag.
|
T |
td()
Starts the <td> tag.
|
T |
textarea()
Starts the <textarea> tag.
|
T |
textAttr(String value)
Sets the
text attribute on the last started tag that
has not been closed. |
T |
tfoot()
Starts the <tfoot> tag.
|
T |
th()
Starts the <th> tag.
|
T |
thead()
Starts the <thead> tag.
|
T |
title()
Starts the <title> tag.
|
T |
title(String value)
Sets the
title attribute on the last started tag that
has not been closed. |
T |
tr()
Starts the <tr> tag.
|
T |
tt()
Starts the <tt> tag.
|
T |
type(String value)
Sets the
type attribute on the last started tag that
has not been closed. |
T |
u()
Starts the <u> tag.
|
T |
ul()
Starts the <ul> tag.
|
T |
usemap(String value)
Sets the
usemap attribute on the last started tag that
has not been closed. |
T |
valign(String value)
Sets the
valign attribute on the last started tag that
has not been closed. |
T |
value(String value)
Sets the
value attribute on the last started tag that
has not been closed. |
T |
valuetype(String value)
Sets the
valuetype attribute on the last started tag that
has not been closed. |
T |
var()
Starts the <var> tag.
|
T |
vlink(String value)
Sets the
vlink attribute on the last started tag that
has not been closed. |
T |
vspace(String value)
Sets the
vspace attribute on the last started tag that
has not been closed. |
T |
width(String value)
Sets the
width attribute on the last started tag that
has not been closed. |
checkbox, checkbox, escapeMarkup, option
public Html(Writer writer)
writer
- never null
.public Html(MarkupBuilder<?> builder)
builder
- never null
.public Html(MarkupBuilder<?> builder, boolean nested)
builder
- never null
.nested
- never null
.protected Html getSelf()
Most implementations only have to do:
return this;
getSelf
in class MarkupBuilder<Html>
this
object.public T a()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T abbr()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T acronym()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T address()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T applet()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T area()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T b()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T base()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T basefont()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T bdo()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T big()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T blockquote()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T body()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T br()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T button()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T caption()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T center()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T cite()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T code()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T col()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T colgroup()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T dd()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T del()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T dfn()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T dir()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T div()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T dl()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T dt()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T em()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T fieldset()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T font()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T form()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T h1()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T h2()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T h3()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T h4()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T h5()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T h6()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T head()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T hr()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T html()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T i()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T iframe()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T img()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T input()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T ins()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T isindex()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T kbd()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T label()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T legend()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T li()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T link()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T map()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T menu()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T meta()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T noframes()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T noscript()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T object()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T ol()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T optgroup()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T option()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T p()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T param()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.SELF
null
public T pre()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T q()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T s()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T samp()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T script()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T select()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T small()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T span()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T strike()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T strong()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T style()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T sub()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T sup()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T table()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T tbody()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T td()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T textarea()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T tfoot()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T th()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T thead()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T title()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T tr()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T tt()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T u()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T ul()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.PAIR
null
public T var()
Tag Closing Policy: MarkupBuilder.TagClosingPolicy.NORMAL
null
public T abbr(String value)
abbr
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T accept(String value)
accept
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T acceptCharset(String value)
accept-charset
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T accesskey(String value)
accesskey
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T action(String value)
action
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T align(String value)
align
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T alink(String value)
alink
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T alt(String value)
alt
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T archive(String value)
archive
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T axis(String value)
axis
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T background(String value)
background
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T bgcolor(String value)
bgcolor
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T border(String value)
border
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T cellpadding(String value)
cellpadding
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T cellspacing(String value)
cellspacing
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T charAttr(String value)
char
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T charoff(String value)
charoff
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T charset(String value)
charset
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T checked(String value)
checked
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T cite(String value)
cite
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T classAttr(String value)
class
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T classid(String value)
classid
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T clear(String value)
clear
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T code(String value)
code
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T codebase(String value)
codebase
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T codetype(String value)
codetype
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T color(String value)
color
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T cols(String value)
cols
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T colspan(String value)
colspan
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T compact(String value)
compact
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T content(String value)
content
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T coords(String value)
coords
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T data(String value)
data
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T datetime(String value)
datetime
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T declare(String value)
declare
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T defer(String value)
defer
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T dir(String value)
dir
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T disabled(String value)
disabled
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T enctype(String value)
enctype
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T face(String value)
face
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T forAttr(String value)
for
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T frame(String value)
frame
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T frameborder(String value)
frameborder
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T headers(String value)
headers
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T height(String value)
height
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T href(String value)
href
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T hreflang(String value)
hreflang
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T hspace(String value)
hspace
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T httpEquiv(String value)
http-equiv
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T id(String value)
id
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T ismap(String value)
ismap
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T label(String value)
label
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T lang(String value)
lang
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T language(String value)
language
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T link(String value)
link
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T longdesc(String value)
longdesc
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T marginheight(String value)
marginheight
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T marginwidth(String value)
marginwidth
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T maxlength(String value)
maxlength
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T media(String value)
media
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T method(String value)
method
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T multiple(String value)
multiple
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T name(String value)
name
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T nohref(String value)
nohref
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T noshade(String value)
noshade
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T nowrap(String value)
nowrap
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T object(String value)
object
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onblur(String value)
onblur
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onchange(String value)
onchange
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onclick(String value)
onclick
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T ondblclick(String value)
ondblclick
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onfocus(String value)
onfocus
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onkeydown(String value)
onkeydown
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onkeypress(String value)
onkeypress
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onkeyup(String value)
onkeyup
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onload(String value)
onload
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onmousedown(String value)
onmousedown
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onmousemove(String value)
onmousemove
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onmouseout(String value)
onmouseout
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onmouseover(String value)
onmouseover
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onmouseup(String value)
onmouseup
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onreset(String value)
onreset
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onselect(String value)
onselect
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onsubmit(String value)
onsubmit
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T onunload(String value)
onunload
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T profile(String value)
profile
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T prompt(String value)
prompt
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T readonly(String value)
readonly
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T rel(String value)
rel
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T rev(String value)
rev
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T rows(String value)
rows
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T rowspan(String value)
rowspan
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T rules(String value)
rules
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T scheme(String value)
scheme
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T scope(String value)
scope
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T scrolling(String value)
scrolling
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T selected(String value)
selected
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T shape(String value)
shape
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T size(String value)
size
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T span(String value)
span
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T src(String value)
src
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T standby(String value)
standby
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T startAttr(String value)
start
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T style(String value)
style
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T summary(String value)
summary
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T tabindex(String value)
tabindex
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T target(String value)
target
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T textAttr(String value)
text
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T title(String value)
title
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T type(String value)
type
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T usemap(String value)
usemap
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T valign(String value)
valign
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T value(String value)
value
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T valuetype(String value)
valuetype
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T vlink(String value)
vlink
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T vspace(String value)
vspace
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
public T width(String value)
width
attribute on the last started tag that
has not been closed.value
- the value to set, maybe null
null
Copyright © 2010–2021 JATL. All rights reserved.