/libcore/luni/src/main/java/org/xml/sax/ |
ContentHandler.java | 0 // ContentHandler.java - handle main document content. 5 // $Id: ContentHandler.java,v 1.13 2004/04/26 17:50:49 dmegginson Exp $ 40 * <code>ContentHandler</code> class in the <code>java.net</code> 58 public interface ContentHandler 67 * invoking any of the other methods in the ContentHandler 419 // end of ContentHandler.java
|
/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 282 public void setContentHandler (ContentHandler handler) 284 contentHandler = handler; 293 public ContentHandler getContentHandler () 295 return contentHandler; 435 // Implementation of org.xml.sax.ContentHandler. 447 if (contentHandler != null) { 448 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...] |
/external/apache-xml/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/java/net/ |
URLConnection.java | 92 ContentHandler defaultHandler = new DefaultContentHandler(); 249 * Returns the specific ContentHandler that will handle the type {@code 256 private ContentHandler getContentHandler(String type) throws IOException { 263 return (ContentHandler) cHandler; 269 return (ContentHandler) cHandler; 298 if (!(cHandler instanceof ContentHandler)) { 303 return (ContentHandler) cHandler; [all...] |
/external/apache-xml/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...] |
/external/apache-xml/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.
|
/external/apache-xml/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() {
|
/external/jetty/src/java/org/eclipse/jetty/xml/ |
XmlParser.java | 42 import org.xml.sax.ContentHandler; 65 private Map<String,ContentHandler> _observerMap; 66 private Stack<ContentHandler> _observers = new Stack<ContentHandler>(); 179 * Add a ContentHandler. Add an additional _content handler that is triggered on a tag name. SAX 180 * events are passed to the ContentHandler provided from a matching start element to the 184 * @param observer SAX ContentHandler 186 public synchronized void addContentHandler(String trigger, ContentHandler observer) 345 ContentHandler observer = null; 347 observer = (ContentHandler) _observerMap.get(name) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatReader.java | 23 import org.xml.sax.ContentHandler; 43 /*package*/ ContentHandler contentHandler; 181 public void setContentHandler(ContentHandler handler) { 182 this.contentHandler = handler; 185 public ContentHandler getContentHandler() { 186 return this.contentHandler; 239 * {@link ContentHandler#startPrefixMapping(String, String)} and 240 * {@link ContentHandler#endPrefixMapping(String)}, and it will filter
|
ExpatParser.java | 27 import org.xml.sax.ContentHandler; 133 ContentHandler contentHandler = xmlReader.contentHandler; 134 if (contentHandler == null) { 143 contentHandler.startElement( 154 ContentHandler contentHandler = xmlReader.contentHandler; 155 if (contentHandler != null) [all...] |
/external/apache-xml/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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/ |
MockHandler.java | 21 import org.xml.sax.ContentHandler; 35 public class MockHandler implements ContentHandler, DTDHandler, DocumentHandler,
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
Message.java | 28 import org.apache.james.mime4j.ContentHandler; 99 private class MessageBuilder implements ContentHandler { 114 * @see org.apache.james.mime4j.ContentHandler#startMessage() 128 * @see org.apache.james.mime4j.ContentHandler#endMessage() 136 * @see org.apache.james.mime4j.ContentHandler#startHeader() 143 * @see org.apache.james.mime4j.ContentHandler#field(java.lang.String) 151 * @see org.apache.james.mime4j.ContentHandler#endHeader() 161 * @see org.apache.james.mime4j.ContentHandler#startMultipart(org.apache.james.mime4j.BodyDescriptor) 173 * @see org.apache.james.mime4j.ContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream) 196 * @see org.apache.james.mime4j.ContentHandler#endMultipart( [all...] |
/external/apache-xml/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)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
__init__.py | 23 from handler import ContentHandler, ErrorHandler
|
handler.py | 45 # ===== CONTENTHANDLER ===== 47 class ContentHandler:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
__init__.py | 23 from handler import ContentHandler, ErrorHandler
|
handler.py | 45 # ===== CONTENTHANDLER ===== 47 class ContentHandler:
|