< prev index next >

test/javax/xml/jaxp/functional/test/gaptest/Bug4515660.java

Print this page




 111         static boolean used = false;
 112 
 113         public ReaderStub() throws ParserConfigurationException, SAXException {
 114             super();
 115             super.setParent(SAXParserFactory.newInstance().newSAXParser().getXMLReader());
 116             used = true;
 117         }
 118 
 119         public void parse(InputSource input) throws SAXException, IOException {
 120             used = true;
 121             super.parse(input);
 122         }
 123 
 124         public void parse(String systemId) throws SAXException, IOException {
 125             used = true;
 126             super.parse(systemId);
 127         }
 128     }
 129 
 130 }
 131 


 111         static boolean used = false;
 112 
 113         public ReaderStub() throws ParserConfigurationException, SAXException {
 114             super();
 115             super.setParent(SAXParserFactory.newInstance().newSAXParser().getXMLReader());
 116             used = true;
 117         }
 118 
 119         public void parse(InputSource input) throws SAXException, IOException {
 120             used = true;
 121             super.parse(input);
 122         }
 123 
 124         public void parse(String systemId) throws SAXException, IOException {
 125             used = true;
 126             super.parse(systemId);
 127         }
 128     }
 129 
 130 }

< prev index next >