public abstract class BooleanVisitor extends ElementVisitor
booleanValue( ElementContext, boolean ), which is
called when a boolean value is retrieved for the element.ElementVisitor.ResourceBundleProviderKEY_LOCATOR| Constructor and Description |
|---|
BooleanVisitor() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
booleanValue(ElementContext context,
boolean value)
Called when the visitor encounters a boolean value.
|
void |
end(ElementEndContext end)
Visit the end tag of an xml element.
|
void |
start(ElementStartContext start)
Visit the start tag of an xml element.
|
getAttributeHelper, getClassLoader, getMetaClassLoader, getResourceBundle, getResourceBundleProvider, getTextHelper, log, log, setResourceBundleProviderpublic final void start(ElementStartContext start)
ElementVisitorThis implementation does nothing.
start in class ElementVisitorstart - information about the xml start tag.public final void end(ElementEndContext end)
ElementVisitorThis implementation does nothing.
end in class ElementVisitorend - information about the xml end tag.protected abstract void booleanValue(ElementContext context, boolean value)
context - the xml parsing context.value - the boolean value.