Searched defs:fPropertyManager (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLOutputFactoryImpl.java56 private PropertyManager fPropertyManager = new PropertyManager(PropertyManager.CONTEXT_WRITER); field in class:XMLOutputFactoryImpl
130 if(fPropertyManager.containsProperty(name))
131 return fPropertyManager.getProperty(name);
140 return fPropertyManager.containsProperty(name);
145 if(name == null || value == null || !fPropertyManager.containsProperty(name) ){
164 fPropertyManager.setProperty(name,value);
187 return fStreamWriter = new XMLStreamWriterImpl(sr, encoding, new PropertyManager(fPropertyManager));
H A DXMLInputFactoryImpl.java51 private PropertyManager fPropertyManager = new PropertyManager(PropertyManager.CONTEXT_READER) ; field in class:XMLInputFactoryImpl
144 new PropertyManager(fPropertyManager));
163 return (XMLReporter)fPropertyManager.getProperty(XMLInputFactory.REPORTER);
167 Object object = fPropertyManager.getProperty(XMLInputFactory.RESOLVER);
169 //return (XMLResolver)fPropertyManager.getProperty(XMLInputFactory.RESOLVER);
173 fPropertyManager.setProperty(XMLInputFactory.REPORTER, xmlreporter);
177 fPropertyManager.setProperty(XMLInputFactory.RESOLVER, xmlresolver);
212 if(fPropertyManager.containsProperty(name))
213 return fPropertyManager.getProperty(name);
226 return fPropertyManager
[all...]
H A DXMLEntityStorage.java75 protected PropertyManager fPropertyManager ; field in class:XMLEntityStorage
82 fPropertyManager = propertyManager ;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityScanner.java120 protected PropertyManager fPropertyManager = null ; field in class:XMLEntityScanner
H A DXMLScanner.java148 protected PropertyManager fPropertyManager = null ; field in class:XMLScanner
272 fPropertyManager = propertyManager ;
H A DXMLStreamReaderImpl.java109 protected PropertyManager fPropertyManager = null ; field in class:XMLStreamReaderImpl
224 fPropertyManager = propertyManager;
261 fEntityManager.reset(fPropertyManager);
263 fScanner.reset(fPropertyManager);
270 fReaderInDefinedState = ((Boolean)fPropertyManager.getProperty(READER_IN_DEFINED_STATE)).booleanValue();
271 fBindNamespaces = ((Boolean)fPropertyManager.getProperty(XMLInputFactory.IS_NAMESPACE_AWARE)).booleanValue();
575 Boolean isValidating = (Boolean) fPropertyManager.getProperty(
613 fScanner.reset(fPropertyManager);
614 fScanner.setPropertyManager(fPropertyManager);
1021 if (fPropertyManager !
[all...]
H A DXMLEntityManager.java304 protected PropertyManager fPropertyManager ; field in class:XMLEntityManager
406 fPropertyManager = propertyManager ;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLStreamWriterImpl.java138 private PropertyManager fPropertyManager = null; field in class:XMLStreamWriterImpl
223 fPropertyManager = props;
242 Boolean ob = (Boolean) fPropertyManager.getProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES);
244 ob = (Boolean) fPropertyManager.getProperty(Constants.ESCAPE_CHARACTERS);
281 Boolean ob = (Boolean) fPropertyManager.getProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES);
283 ob = (Boolean) fPropertyManager.getProperty(Constants.ESCAPE_CHARACTERS);
436 if (!fPropertyManager.containsProperty(str)) {
441 return fPropertyManager.getProperty(str);

Completed in 76 milliseconds