Home | History | Annotate | Download | only in sax

Lines Matching refs:reader

65      * to be the reader's {@link org.xml.sax.ContentHandler}, and then will call
66 * reader.parse(inputSource).
68 * @param reader An XMLReader to be used for the parse.
70 * and that will be passed to the reader parse method.
72 public SAXSource(XMLReader reader, InputSource inputSource) {
73 this.reader = reader;
81 * reader via {@link org.xml.sax.helpers.XMLReaderFactory}
83 * the reader's {@link org.xml.sax.ContentHandler}, and calls
84 * reader.parse(inputSource).
87 * and that will be passed to the parse method of the reader.
96 * @param reader A valid XMLReader or XMLFilter reference.
98 public void setXMLReader(XMLReader reader) {
99 this.reader = reader;
108 return reader;
170 private XMLReader reader;