Home | History | Annotate | Download | only in helpers

Lines Matching full:documenthandler

15 import org.xml.sax.DocumentHandler;
165 public void setDocumentHandler (DocumentHandler handler)
167 documentHandler = handler;
260 if (documentHandler != null)
261 documentHandler.setDocumentLocator(locator);
275 if (documentHandler != null)
276 documentHandler.startDocument();
290 if (documentHandler != null)
291 documentHandler.endDocument();
333 if (documentHandler != null) {
335 documentHandler.startElement(qName, qAtts);
354 if (documentHandler != null)
355 documentHandler.endElement(qName);
372 if (documentHandler != null)
373 documentHandler.characters(ch, start, length);
390 if (documentHandler != null)
391 documentHandler.ignorableWhitespace(ch, start, length);
407 if (documentHandler != null)
408 documentHandler.processingInstruction(target, data);
432 DocumentHandler documentHandler;