org.exolab.adaptx.xslt
public interface ResultHandler extends DocumentHandler
Version: $Revision: 3633 $ $Date: 2003-03-01 02:38:44 -0500 (Sat, 01 Mar 2003) $
Method Summary | |
---|---|
void | cdata(char[] chars, int start, int length)
Signals to receive CDATA characters |
void | comment(String data)
Signals to recieve a comment |
void | entityReference(String name)
Signals to recieve an entity reference with the given name |
void | setIndentSize(short indentSize)
Sets the indent size for all formatters that perform
serialization, in which indentation is applicable. |
void | setOutputFormat(OutputFormat format)
Sets the output format information for Formatters that
perform serialization. |
void | unescapedCharacters(char[] chars, int start, int length)
Signals to receive characters which should not be escaped |
Parameters: chars the character array containing the characters to receive start the index into the character array to start receiving characters at length the number of characters to recieve
Parameters: data, the content of the comment
Parameters: name the name of the entity reference
Parameters: indentSize the number of characters to indent
Parameters: format the OutputFormat used to specify properties during serialization
Parameters: chars the character array containing the characters to receive start the index into the character array to start receiving characters at length the number of characters to recieve