1/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package tests.api.org.xml.sax.support;
18
19import org.xml.sax.ContentHandler;
20import org.xml.sax.DTDHandler;
21import org.xml.sax.EntityResolver;
22import org.xml.sax.ErrorHandler;
23import org.xml.sax.InputSource;
24import org.xml.sax.XMLReader;
25
26/**
27 * An XMLReader that is accessible, but can't be instantiated.
28 */
29public class NoInstanceXMLReader implements XMLReader {
30
31    public NoInstanceXMLReader(int i) {
32    }
33
34    public ContentHandler getContentHandler() {
35        return null;
36    }
37
38    public DTDHandler getDTDHandler() {
39        return null;
40    }
41
42    public EntityResolver getEntityResolver() {
43        return null;
44    }
45
46    public ErrorHandler getErrorHandler() {
47        return null;
48    }
49
50    public boolean getFeature(String name) {
51        return false;
52    }
53
54    public Object getProperty(String name) {
55        return null;
56    }
57
58    public void parse(InputSource input) {
59    }
60
61    public void parse(String systemId) {
62    }
63
64    public void setContentHandler(ContentHandler handler) {
65    }
66
67    public void setDTDHandler(DTDHandler handler) {
68    }
69
70    public void setEntityResolver(EntityResolver resolver) {
71    }
72
73    public void setErrorHandler(ErrorHandler handler) {
74    }
75
76    public void setFeature(String name, boolean value) {
77    }
78
79    public void setProperty(String name, Object value) {
80    }
81
82}
83