Home | History | Annotate | Download | only in sax2dtm

Lines Matching defs:incrementalSAXSource

67   private IncrementalSAXSource m_incrementalSAXSource = null;
357 * Bind a IncrementalSAXSource to this DTM. If we discover we need nodes
361 * Note that we do not actually build the IncrementalSAXSource, since we don't
365 * @param incrementalSAXSource The parser that we want to recieve events from
368 public void setIncrementalSAXSource(IncrementalSAXSource incrementalSAXSource)
373 // Note: It's possible that some versions of IncrementalSAXSource may
377 // IncrementalSAXSource.do...() methods.)
378 m_incrementalSAXSource = incrementalSAXSource;
381 incrementalSAXSource.setContentHandler(this);
382 incrementalSAXSource.setLexicalHandler(this);
383 incrementalSAXSource.setDTDHandler(this);
385 // Are the following really needed? incrementalSAXSource doesn't yet
387 //incrementalSAXSource.setErrorHandler(this);
388 //incrementalSAXSource.setDeclHandler(this);
400 * the IncrementalSAXSource if we're bound to one and should receive
419 * the IncrementalSAXSource if we're bound to one and should receive
473 * we're partnered with a IncrementalSAXSource) and thus require that the
790 // EOF) or an exception if IncrementalSAXSource malfunctioned