OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:documenthandler
(Results
1 - 25
of
34
) sorted by null
1
2
/libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java
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)
[
all
...]
AttributeListImpl.java
63
* @see org.xml.sax.
DocumentHandler
#startElement
92
* @see org.xml.sax.
DocumentHandler
#startElement
138
* @see org.xml.sax.
DocumentHandler
#startElement
175
* list between
DocumentHandler
.startElement events. Normally,
179
* @see org.xml.sax.
DocumentHandler
#startElement
ParserAdapter.java
16
import org.xml.sax.
DocumentHandler
;
55
public class ParserAdapter implements XMLReader,
DocumentHandler
413
// Implementation of org.xml.sax.
DocumentHandler
.
439
* @see org.xml.sax.
DocumentHandler
#startDocument
456
* @see org.xml.sax.
DocumentHandler
#endDocument
606
* @see org.xml.sax.
DocumentHandler
#endElement
643
* @see org.xml.sax.
DocumentHandler
#characters
663
* @see org.xml.sax.
DocumentHandler
#ignorableWhitespace
682
* @see org.xml.sax.
DocumentHandler
#processingInstruction
LocatorImpl.java
73
*
DocumentHandler
methods).</p>
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/
DoNothingParser.java
20
import org.xml.sax.
DocumentHandler
;
40
public void setDocumentHandler(
DocumentHandler
handler) {
NoAccessParser.java
20
import org.xml.sax.
DocumentHandler
;
40
public void setDocumentHandler(
DocumentHandler
handler) {
NoInstanceParser.java
20
import org.xml.sax.
DocumentHandler
;
43
public void setDocumentHandler(
DocumentHandler
handler) {
NoSubclassParser.java
20
import org.xml.sax.
DocumentHandler
;
39
public void setDocumentHandler(
DocumentHandler
handler) {
MockParser.java
23
import org.xml.sax.
DocumentHandler
;
52
public void setDocumentHandler(
DocumentHandler
handler) {
MockHandler.java
23
import org.xml.sax.
DocumentHandler
;
35
public class MockHandler implements ContentHandler, DTDHandler,
DocumentHandler
,
/libcore/luni/src/main/java/org/xml/sax/
HandlerBase.java
19
* interfaces: EntityResolver, DTDHandler,
DocumentHandler
,
33
* {@link org.xml.sax.
DocumentHandler
DocumentHandler
}
42
* @see org.xml.sax.
DocumentHandler
47
implements EntityResolver, DTDHandler,
DocumentHandler
, ErrorHandler
132
// Default implementation of
DocumentHandler
interface.
144
* @see org.xml.sax.
DocumentHandler
#setDocumentLocator
163
* @see org.xml.sax.
DocumentHandler
#startDocument
182
* @see org.xml.sax.
DocumentHandler
#endDocument
203
* @see org.xml.sax.
DocumentHandler
#startElemen
[
all
...]
Parser.java
47
* @see org.xml.sax.
DocumentHandler
126
* @see
DocumentHandler
129
public abstract void setDocumentHandler (
DocumentHandler
handler);
DocumentHandler.java
4
// $Id:
DocumentHandler
.java,v 1.6 2002/01/30 21:13:43 dbrownell Exp $
48
public interface
DocumentHandler
{
57
* invoking any of the other methods in the
DocumentHandler
233
// end of
DocumentHandler
.java
AttributeList.java
23
* {@link org.xml.sax.
DocumentHandler
#startElement startElement}
69
* @see org.xml.sax.
DocumentHandler
#startElement startElement
ContentHandler.java
35
*
DocumentHandler
interface, but it adds support for Namespaces
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java
63
public void setDocumentHandler(
DocumentHandler
h)
102
final
DocumentHandler
docHandler;
109
DocHandlerWrapper(
DocumentHandler
h)
/libcore/dom/src/test/java/org/w3c/domts/
XercesHTML2DocumentBuilderFactory.java
27
import org.xml.sax.
DocumentHandler
;
117
private final
DocumentHandler
htmlBuilder;
125
(
DocumentHandler
) htmlBuilderConstructor.newInstance(
XercesHTMLDocumentBuilderFactory.java
27
import org.xml.sax.
DocumentHandler
;
117
private final
DocumentHandler
htmlBuilder;
125
(
DocumentHandler
) htmlBuilderConstructor.newInstance(
/libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java
97
* @see org.xml.sax.
DocumentHandler
121
* @see org.xml.sax.
DocumentHandler
145
* @see org.xml.sax.
DocumentHandler
167
* @see org.xml.sax.
DocumentHandler
195
* @see org.xml.sax.
DocumentHandler
SAXParser.java
122
* @see org.xml.sax.
DocumentHandler
150
* @see org.xml.sax.
DocumentHandler
version of this method instead.
178
* @see org.xml.sax.
DocumentHandler
203
* @see org.xml.sax.
DocumentHandler
version of this method instead.
233
* @see org.xml.sax.
DocumentHandler
257
* @see org.xml.sax.
DocumentHandler
282
* @see org.xml.sax.
DocumentHandler
311
* @see org.xml.sax.
DocumentHandler
344
* @see org.xml.sax.
DocumentHandler
375
* @see org.xml.sax.
DocumentHandler
[
all
...]
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLReaderAdapterTest.java
27
import org.xml.sax.
DocumentHandler
;
133
// There is no getter for the
DocumentHandler
, so we can only test
195
// null case (for the
DocumentHandler
itself!)
/external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMConfigurationException.java
75
* creating its own exception from within a
DocumentHandler
DTMException.java
180
* creating its own exception from within a
DocumentHandler
/libcore/luni/src/main/java/javax/xml/transform/
TransformerConfigurationException.java
72
* creating its own exception from within a
DocumentHandler
TransformerException.java
169
* creating its own exception from within a
DocumentHandler
Completed in 241 milliseconds
1
2