Methods Summary |
---|
public void | characters(char[] ch, int start, int length)delegates to the serialization context
try {
context.writeChars(ch, start, length);
} catch (IOException ioe) {
throw new SAXException(ioe);
}
|
public void | endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)delegates to the serialization context
try {
context.endElement();
} catch (IOException ioe) {
throw new SAXException(ioe);
}
|
public org.apache.axis.encoding.SerializationContext | getContext()Getter for property context.
return context;
|
public void | setContext(org.apache.axis.encoding.SerializationContext context)Setter for property context.
this.context = context;
|
public void | startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes attributes)delegates to the serialization context
try {
context.startElement(new QName(uri, localName), attributes);
} catch (IOException ioe) {
throw new SAXException(ioe);
}
|