HomeSort by relevance Sort by last modified time
    Searched refs:ContentHandler (Results 26 - 50 of 95) sorted by null

12 3 4

  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 11 import org.xml.sax.ContentHandler;
38 * <li>{@link org.xml.sax.ContentHandler ContentHandler}</li>
55 * @see org.xml.sax.ContentHandler
59 implements EntityResolver, DTDHandler, ContentHandler, ErrorHandler
152 // Default implementation of ContentHandler interface.
164 * @see org.xml.sax.ContentHandler#setDocumentLocator
183 * @see org.xml.sax.ContentHandler#startDocument
202 * @see org.xml.sax.ContentHandler#endDocument
222 * @see org.xml.sax.ContentHandler#startPrefixMappin
    [all...]
XMLFilterImpl.java 11 import org.xml.sax.ContentHandler;
49 * @see org.xml.sax.ContentHandler
53 implements XMLFilter, EntityResolver, DTDHandler, ContentHandler, ErrorHandler
284 public void setContentHandler (ContentHandler handler)
286 contentHandler = handler;
295 public ContentHandler getContentHandler ()
297 return contentHandler;
437 // Implementation of org.xml.sax.ContentHandler.
449 if (contentHandler != null) {
450 contentHandler.setDocumentLocator(locator)
    [all...]
XMLReaderAdapter.java 13 import org.xml.sax.ContentHandler;
50 public class XMLReaderAdapter implements Parser, ContentHandler
248 // Implementation of org.xml.sax.ContentHandler.
256 * @see org.xml.sax.ContentHandler#setDocumentLocator
270 * @see org.xml.sax.ContentHandler#startDocument
285 * @see org.xml.sax.ContentHandler#endDocument
300 * @see org.xml.sax.ContentHandler#startPrefixMapping
311 * @see org.xml.sax.ContentHandler#endPrefixMapping
327 * @see org.xml.sax.ContentHandler#endDocument
348 * @see org.xml.sax.ContentHandler#endElemen
    [all...]
ParserAdapter.java 14 import org.xml.sax.ContentHandler;
42 * that it is not possible to report {@link org.xml.sax.ContentHandler#skippedEntity
325 public void setContentHandler (ContentHandler handler)
327 contentHandler = handler;
337 public ContentHandler getContentHandler ()
339 return contentHandler;
424 * @see org.xml.sax.ContentHandler#setDocumentLocator
429 if (contentHandler != null) {
430 contentHandler.setDocumentLocator(locator);
446 if (contentHandler != null)
    [all...]
  /libcore/luni/src/main/java/java/net/
URLConnection.java 95 ContentHandler defaultHandler = new DefaultContentHandler();
256 * Returns the specific ContentHandler that will handle the type {@code
263 private ContentHandler getContentHandler(String type) throws IOException {
270 return (ContentHandler) cHandler;
276 return (ContentHandler) cHandler;
317 if (!(cHandler instanceof ContentHandler)) {
322 return (ContentHandler) cHandler;
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
TreeWalker.java 33 import org.xml.sax.ContentHandler;
39 * This class does a pre-order walk of the DOM tree, calling a ContentHandler
47 /** Local reference to a ContentHandler */
48 private ContentHandler m_contentHandler = null;
60 * Get the ContentHandler used for the tree walk.
62 * @return the ContentHandler used for the tree walk
64 public ContentHandler getContentHandler()
70 * Get the ContentHandler used for the tree walk.
72 * @return the ContentHandler used for the tree walk
74 public void setContentHandler(ContentHandler ch
    [all...]
XMLString.java 36 * characters method on the passed ContentHandler for the
38 * ContentHandler's characters methods may well occur for a single call to
41 * @param ch A non-null reference to a ContentHandler.
45 public abstract void dispatchCharactersEvents(org.xml.sax.ContentHandler ch)
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 27 import org.xml.sax.ContentHandler;
31 * This class does a pre-order walk of the DTM tree, calling a ContentHandler
42 /** Local reference to a ContentHandler */
43 private ContentHandler m_contentHandler = null;
59 * Get the ContentHandler used for the tree walk.
61 * @return the ContentHandler used for the tree walk
63 public ContentHandler getcontentHandler()
69 * Set the ContentHandler used for the tree walk.
71 * @param ch the ContentHandler to be the result of the tree walk.
73 public void setcontentHandler(ContentHandler ch
    [all...]
IncrementalSAXSource_Filter.java 31 import org.xml.sax.ContentHandler;
68 implements IncrementalSAXSource, ContentHandler, DTDHandler, LexicalHandler, ErrorHandler, Runnable
79 private ContentHandler clientContentHandler=null; // %REVIEW% support multiple?
170 public void setContentHandler(ContentHandler handler)
203 // ContentHandler methods
204 // These pass the data to our client ContentHandler...
419 // exceptions thrown by the ContentHandler, which prevents us from
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
TrAXFilter.java 33 import org.xml.sax.ContentHandler;
161 throw new org.xml.sax.SAXException(XSLMessages.createMessage(XSLTErrorResources.ER_CANNOT_CALL_PARSE, null)); //"parse can not be called if the ContentHandler has not been set!");
207 ContentHandler ch = m_transformer.getInputContentHandler();
224 public void setContentHandler (ContentHandler handler)
SerializerSwitcher.java 35 import org.xml.sax.ContentHandler;
107 ContentHandler ch = serializer.asContentHandler();
147 * @return new contentHandler.
  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTM.java 804 * characters method on the passed ContentHandler for the
807 * ContentHandler's characters methods may well occur for a single call to
811 * @param ch A non-null reference to a ContentHandler.
820 int nodeHandle, org.xml.sax.ContentHandler ch, boolean normalize)
828 * @param ch A non-null reference to a ContentHandler.
832 public void dispatchToEvents(int nodeHandle, org.xml.sax.ContentHandler ch)
866 public org.xml.sax.ContentHandler getContentHandler();
    [all...]
  /frameworks/base/sax/java/android/sax/
RootElement.java 22 import org.xml.sax.ContentHandler;
91 * Gets the SAX {@code ContentHandler}. Pass this to your SAX parser.
93 public ContentHandler getContentHandler() {
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 22 import org.xml.sax.ContentHandler;
42 /*package*/ ContentHandler contentHandler;
176 public void setContentHandler(ContentHandler handler) {
177 this.contentHandler = handler;
180 public ContentHandler getContentHandler() {
181 return this.contentHandler;
234 * {@link ContentHandler#startPrefixMapping(String, String)} and
235 * {@link ContentHandler#endPrefixMapping(String)}, and it will filter
ExpatParser.java 28 import org.xml.sax.ContentHandler;
135 ContentHandler contentHandler = xmlReader.contentHandler;
136 if (contentHandler == null) {
145 contentHandler.startElement(
156 ContentHandler contentHandler = xmlReader.contentHandler;
157 if (contentHandler != null)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
TreeWalker.java 34 import org.xml.sax.ContentHandler;
41 * This class does a pre-order walk of the DOM tree, calling a ContentHandler
53 /** Local reference to a ContentHandler */
54 final private ContentHandler m_contentHandler;
71 * Get the ContentHandler used for the tree walk.
73 * @return the ContentHandler used for the tree walk
75 public ContentHandler getContentHandler()
80 public TreeWalker(ContentHandler ch) {
85 * @param contentHandler The implemention of the
86 * contentHandler operation (toXMLString, digest, ...
    [all...]
ExtendedContentHandler.java 28 * This interface describes extensions to the SAX ContentHandler interface.
47 public interface ExtendedContentHandler extends org.xml.sax.ContentHandler
ToTextSAXHandler.java 30 import org.xml.sax.ContentHandler;
58 * @see org.xml.sax.ContentHandler#endElement(String, String, String)
67 public ToTextSAXHandler(ContentHandler hdlr, LexicalHandler lex, String encoding)
75 public ToTextSAXHandler(ContentHandler handler, String encoding)
232 * @see org.xml.sax.ContentHandler#endPrefixMapping(String)
239 * @see org.xml.sax.ContentHandler#ignorableWhitespace(char[], int, int)
248 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
258 * @see org.xml.sax.ContentHandler#setDocumentLocator(Locator)
265 * @see org.xml.sax.ContentHandler#skippedEntity(String)
272 * @see org.xml.sax.ContentHandler#startElement(String, String, String, Attributes
    [all...]
ToXMLSAXHandler.java 32 import org.xml.sax.ContentHandler;
175 * @see org.xml.sax.ContentHandler#endDocument()
239 * @see org.xml.sax.ContentHandler#endElement(String, String, String)
277 * @see org.xml.sax.ContentHandler#endPrefixMapping(String)
288 * @see org.xml.sax.ContentHandler#ignorableWhitespace(char[], int, int)
297 * @see org.xml.sax.ContentHandler#setDocumentLocator(Locator)
305 * @see org.xml.sax.ContentHandler#skippedEntity(String)
313 * @see org.xml.sax.ContentHandler#startPrefixMapping(String, String)
326 * @see org.xml.sax.ContentHandler#startPrefixMapping(String, String)
471 public ToXMLSAXHandler(ContentHandler handler, String encoding
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockHandler.java 21 import org.xml.sax.ContentHandler;
35 public class MockHandler implements ContentHandler, DTDHandler, DocumentHandler,
  /packages/apps/Email/src/org/apache/james/mime4j/message/
Message.java 28 import org.apache.james.mime4j.ContentHandler;
98 private class MessageBuilder implements ContentHandler {
113 * @see org.apache.james.mime4j.ContentHandler#startMessage()
127 * @see org.apache.james.mime4j.ContentHandler#endMessage()
135 * @see org.apache.james.mime4j.ContentHandler#startHeader()
142 * @see org.apache.james.mime4j.ContentHandler#field(java.lang.String)
150 * @see org.apache.james.mime4j.ContentHandler#endHeader()
160 * @see org.apache.james.mime4j.ContentHandler#startMultipart(org.apache.james.mime4j.BodyDescriptor)
172 * @see org.apache.james.mime4j.ContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream)
195 * @see org.apache.james.mime4j.ContentHandler#endMultipart()
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
GDataParser.java 20 import org.xml.sax.ContentHandler;
27 public final class GDataParser implements ContentHandler {
  /libcore/luni/src/main/java/org/apache/xpath/objects/
XStringForChars.java 131 * characters method on the passed ContentHandler for the
133 * ContentHandler's characters methods may well occur for a single call to
136 * @param ch A non-null reference to a ContentHandler.
140 public void dispatchCharactersEvents(org.xml.sax.ContentHandler ch)
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 34 import org.xml.sax.ContentHandler;
164 ContentHandler handler = newContentHandler(videoAdapter);
188 private static void saxyModelTest(InputStream inputStream, ContentHandler contentHandler)
191 Xml.parse(inputStream, Xml.Encoding.UTF_8, contentHandler);
201 private static ContentHandler newContentHandler(VideoAdapter videoAdapter) {
208 public ContentHandler newContentHandler(VideoAdapter videoAdapter) {
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 21 import org.xml.sax.ContentHandler;
68 protected ContentHandler contentHandler = new DefaultHandler();
257 public void setContentHandler (ContentHandler handler)
259 this.contentHandler = handler;
262 public ContentHandler getContentHandler() { return contentHandler; }
274 contentHandler.setDocumentLocator(this);
319 contentHandler.startDocument();
344 contentHandler.endDocument()
    [all...]

Completed in 789 milliseconds

12 3 4