< prev index next >

test/javax/xml/jaxp/functional/javax/xml/validation/ptests/ValidatorTest.java

Print this page




 192     private Result getSAXResult() {
 193         SAXResult saxResult = new SAXResult();
 194         saxResult.setHandler(new DefaultHandler());
 195         return saxResult;
 196     }
 197 
 198     private Source getDOMSource() {
 199         return new DOMSource(xmlDoc);
 200     }
 201 
 202     private Result getDOMResult() {
 203         return new DOMResult();
 204     }
 205 
 206     private static final String UNRECOGNIZED_NAME = "http://xml.org/sax/features/namespace-prefixes";
 207     private String xmlFileUri;
 208     private Schema schema;
 209     private Document xmlDoc;
 210 
 211 }
 212 


 192     private Result getSAXResult() {
 193         SAXResult saxResult = new SAXResult();
 194         saxResult.setHandler(new DefaultHandler());
 195         return saxResult;
 196     }
 197 
 198     private Source getDOMSource() {
 199         return new DOMSource(xmlDoc);
 200     }
 201 
 202     private Result getDOMResult() {
 203         return new DOMResult();
 204     }
 205 
 206     private static final String UNRECOGNIZED_NAME = "http://xml.org/sax/features/namespace-prefixes";
 207     private String xmlFileUri;
 208     private Schema schema;
 209     private Document xmlDoc;
 210 
 211 }

< prev index next >