interface IBuilder
Modifier and Type | Method and Description |
---|---|
void |
characters(java.lang.String str)
called by the parser for Text nodes
|
void |
end()
called by Converter at the end of an element
|
IBuilder |
getBuilder(BuilderContext ctx,
java.lang.String rawName,
org.xml.sax.Attributes atts)
factory method: return the appropriate builder for given element if we have one
|
boolean |
ignoreChildren()
if true, xsl:fo elements that are children of an element using this builder must be ignored
|
void |
postEnd()
called by Converter after calling end()
|
void |
preStart(java.lang.String rawName,
org.xml.sax.Attributes atts)
called by Converter before calling start()
|
void |
start(java.lang.String rawName,
org.xml.sax.Attributes atts)
called by Converter at the start of an element
|
boolean |
useForChildren(java.lang.String rawName,
org.xml.sax.Attributes attrs)
if true, builder is used for its child elements as well
|
void preStart(java.lang.String rawName, org.xml.sax.Attributes atts) throws java.io.IOException
java.io.IOException
void start(java.lang.String rawName, org.xml.sax.Attributes atts) throws java.io.IOException
java.io.IOException
void end() throws java.io.IOException
java.io.IOException
void postEnd() throws java.io.IOException
java.io.IOException
void characters(java.lang.String str) throws java.io.IOException
java.io.IOException
IBuilder getBuilder(BuilderContext ctx, java.lang.String rawName, org.xml.sax.Attributes atts)
boolean ignoreChildren()
boolean useForChildren(java.lang.String rawName, org.xml.sax.Attributes attrs)