HomeSort by relevance Sort by last modified time
    Searched refs:IncrementalSAXSource (Results 1 - 6 of 6) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource.java 19 * $Id: IncrementalSAXSource.java 468653 2006-10-28 07:07:05Z minchau $
28 /** <p>IncrementalSAXSource is an API that delivers a small number of
37 public interface IncrementalSAXSource
60 * IncrementalSAXSource is running to deliver more events (true),
69 * @return Boolean.TRUE if the IncrementalSAXSource believes more data
80 * IncrementalSAXSource. In some implementations, this may launch a
89 } // class IncrementalSAXSource
DTMManagerDefault.java 340 // build, then we still want to set up the IncrementalSAXSource stuff.
343 IncrementalSAXSource coParser=null;
348 coParser =(IncrementalSAXSource)
357 // Create a IncrementalSAXSource to run on the secondary thread.
387 // Have the DTM set itself up as IncrementalSAXSource's listener.
403 // if we're using IncrementalSAXSource.filter().
IncrementalSAXSource_Filter.java 43 /** <p>IncrementalSAXSource_Filter implements IncrementalSAXSource, using a
68 implements IncrementalSAXSource, ContentHandler, DTDHandler, LexicalHandler, ErrorHandler, Runnable
114 static public IncrementalSAXSource createIncrementalSAXSource(CoroutineManager co, int controllerCoroutineID) {
DTMDocumentImpl.java 112 private IncrementalSAXSource m_incrSAXSource=null;
168 /** Bind a IncrementalSAXSource to this DTM. If we discover we need nodes
172 * Note that we do not actually build the IncrementalSAXSource, since we don't
176 * @param source The IncrementalSAXSource that we want to recieve events from
179 public void setIncrementalSAXSource(IncrementalSAXSource source)
187 // Are the following really needed? IncrementalSAXSource doesn't yet
318 * the IncrementalSAXSource if we're bound to one and should receive
336 * the IncrementalSAXSource if we're bound to one and should receive
393 * we're partnered with a IncrementalSAXSource) and thus require that the
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 34 import org.apache.xml.dtm.ref.IncrementalSAXSource;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 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)
    [all...]

Completed in 508 milliseconds