Home | History | Annotate | Download | only in parsers

Lines Matching refs:features

34             = "http://xml.org/sax/features/namespaces";
37 = "http://xml.org/sax/features/validation";
39 private Map<String, Boolean> features = new HashMap<String, Boolean>();
47 if (!name.startsWith("http://xml.org/sax/features/")) {
51 return Boolean.TRUE.equals(features.get(name));
80 return new SAXParserImpl(features);
92 if (!name.startsWith("http://xml.org/sax/features/")) {
97 features.put(name, Boolean.TRUE);
99 // This is needed to disable features that are enabled by default.
100 features.put(name, Boolean.FALSE);