Home | History | Annotate | Download | only in helpers

Lines Matching defs:contentHandler

14 import org.xml.sax.ContentHandler;
42 * that it is not possible to report {@link org.xml.sax.ContentHandler#skippedEntity
323 public void setContentHandler (ContentHandler handler)
325 contentHandler = handler;
335 public ContentHandler getContentHandler ()
337 return contentHandler;
422 * @see org.xml.sax.ContentHandler#setDocumentLocator
427 if (contentHandler != null) {
428 contentHandler.setDocumentLocator(locator);
444 if (contentHandler != null) {
445 contentHandler.startDocument();
461 if (contentHandler != null) {
462 contentHandler.endDocument();
488 if (contentHandler != null) {
490 contentHandler.startElement("", "", qName.intern(),
526 if (contentHandler != null)
527 contentHandler.startPrefixMapping(prefix, value);
592 if (contentHandler != null) {
594 contentHandler.startElement(name[0], name[1], name[2], atts);
614 if (contentHandler != null) {
615 contentHandler.endElement("", "", qName.intern());
622 if (contentHandler != null) {
623 contentHandler.endElement(names[0], names[1], names[2]);
627 contentHandler.endPrefixMapping(prefix);
648 if (contentHandler != null) {
649 contentHandler.characters(ch, start, length);
668 if (contentHandler != null) {
669 contentHandler.ignorableWhitespace(ch, start, length);
687 if (contentHandler != null) {
688 contentHandler.processingInstruction(target, data);
839 ContentHandler contentHandler = null;