public abstract class ElementBuilderImpl extends Object
ElementBuilderBase
that handles state, but
nothing else.
DO NOT USE THIS CLASS. This class is an implementation class and may change in the future.
This class is used to ensure that the HTML and DOM implementations throw the same exceptions, even if something is valid in one and not the other. For example, the DOM implementation supports changing an attribute after setting inner HTML, but the HTML version does not, so they should both throw an error. Otherwise, they would not be swappable.Constructor and Description |
---|
ElementBuilderImpl() |
Modifier and Type | Method and Description |
---|---|
protected void |
assertCanAddAttributeImpl()
Assert that the builder is in a state where an attribute can be added.
|
protected void |
assertCanAddStylePropertyImpl()
Assert that a style property can be added, and setup the state as if one is
about to be added.
|
protected void |
assertValidTagName(String tagName)
Assert that the specified tag name is valid.
|
protected abstract void |
doCloseStartTagImpl()
Close the start tag.
|
protected abstract void |
doCloseStyleAttributeImpl()
Close the style attribute.
|
protected abstract void |
doEndStartTagImpl()
Self-close the start tag.
|
protected abstract void |
doEndTagImpl(String tagName)
End the specified tag.
|
protected abstract Element |
doFinishImpl()
Return the build element.
|
protected abstract void |
doHtmlImpl(SafeHtml html)
Set the specified html as the inner HTML of the current element.
|
protected abstract void |
doOpenStyleImpl()
Open the style attribute.
|
protected abstract void |
doTextImpl(String text)
Set the specified text as the inner text of the current element.
|
void |
end() |
void |
end(String tagName) |
protected void |
endAllTags()
End all open tags, including the root element.
|
void |
endStyle() |
Element |
finish()
Return the built DOM as an
Element . |
int |
getDepth() |
void |
html(SafeHtml html) |
protected void |
lockCurrentElement()
Lock the current element, preventing any additional changes to it.
|
void |
onStart(String tagName,
ElementBuilderBase<?> builder) |
abstract StylesBuilder |
style()
Get the
StylesBuilder used to add style properties to the current
element. |
void |
text(String text) |
public void end()
public void end(String tagName)
public void endStyle()
public Element finish()
Element
.Element
that was builtpublic int getDepth()
public void html(SafeHtml html)
public void onStart(String tagName, ElementBuilderBase<?> builder)
public abstract StylesBuilder style()
StylesBuilder
used to add style properties to the current
element.StylesBuilder
public void text(String text)
protected void assertCanAddAttributeImpl()
protected void assertCanAddStylePropertyImpl()
protected void assertValidTagName(String tagName)
IllegalArgumentException
- if not validprotected abstract void doCloseStartTagImpl()
protected abstract void doCloseStyleAttributeImpl()
protected abstract void doEndStartTagImpl()
protected abstract void doEndTagImpl(String tagName)
tagName
- the name of the tag to endprotected abstract Element doFinishImpl()
protected abstract void doHtmlImpl(SafeHtml html)
html
- the HTML to setprotected abstract void doOpenStyleImpl()
protected abstract void doTextImpl(String text)
text
- the text to setprotected void endAllTags()
Doing so also ensures that all builder methods will throw an exception because the stack is empty, and a new element cannot be started.
protected void lockCurrentElement()
end()
.Copyright © 2018. All rights reserved.