Home | History | Annotate | Download | only in tagsoup

Lines Matching defs:theFeatures

282 	private HashMap theFeatures = new HashMap();
284 theFeatures.put(namespacesFeature, truthValue(DEFAULT_NAMESPACES));
285 theFeatures.put(namespacePrefixesFeature, Boolean.FALSE);
286 theFeatures.put(externalGeneralEntitiesFeature, Boolean.FALSE);
287 theFeatures.put(externalParameterEntitiesFeature, Boolean.FALSE);
288 theFeatures.put(isStandaloneFeature, Boolean.FALSE);
289 theFeatures.put(lexicalHandlerParameterEntitiesFeature,
291 theFeatures.put(resolveDTDURIsFeature, Boolean.TRUE);
292 theFeatures.put(stringInterningFeature, Boolean.TRUE);
293 theFeatures.put(useAttributes2Feature, Boolean.FALSE);
294 theFeatures.put(useLocator2Feature, Boolean.FALSE);
295 theFeatures.put(useEntityResolver2Feature, Boolean.FALSE);
296 theFeatures.put(validationFeature, Boolean.FALSE);
297 theFeatures.put(xmlnsURIsFeature, Boolean.FALSE);
298 theFeatures.put(xmlnsURIsFeature, Boolean.FALSE);
299 theFeatures.put(XML11Feature, Boolean.FALSE);
300 theFeatures.put(ignoreBogonsFeature, truthValue(DEFAULT_IGNORE_BOGONS));
301 theFeatures.put(bogonsEmptyFeature, truthValue(DEFAULT_BOGONS_EMPTY));
302 theFeatures.put(rootBogonsFeature, truthValue(DEFAULT_ROOT_BOGONS));
303 theFeatures.put(defaultAttributesFeature, truthValue(DEFAULT_DEFAULT_ATTRIBUTES));
304 theFeatures.put(translateColonsFeature, truthValue(DEFAULT_TRANSLATE_COLONS));
305 theFeatures.put(restartElementsFeature, truthValue(DEFAULT_RESTART_ELEMENTS));
306 theFeatures.put(ignorableWhitespaceFeature, truthValue(DEFAULT_IGNORABLE_WHITESPACE));
307 theFeatures.put(CDATAElementsFeature, truthValue(DEFAULT_CDATA_ELEMENTS));
319 Boolean b = (Boolean)theFeatures.get(name);
328 Boolean b = (Boolean)theFeatures.get(name);
332 if (value) theFeatures.put(name, Boolean.TRUE);
333 else theFeatures.put(name, Boolean.FALSE);