Searched refs:propertyId (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLComponentManager.java69 * @param propertyId The property identifier.
73 public Object getProperty(String propertyId) argument
80 * @param propertyId The property identifier.
84 public Object getProperty(String propertyId, Object defaultObject); argument
88 public PropertyState getPropertyState(String propertyId); argument
H A DXMLComponent.java92 * @param propertyId The property identifier.
101 public void setProperty(String propertyId, Object value) argument
120 * @param propertyId The property identifier.
124 public Object getPropertyDefault(String propertyId); argument
H A DXMLParserConfiguration.java166 * @param propertyId The property identifier.
172 public void setProperty(String propertyId, Object value) argument
178 * @param propertyId The property identifier.
183 public Object getProperty(String propertyId) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DAbstractXMLSchema.java98 public final Object getProperty(String propertyId) { argument
99 return fProperties.get(propertyId);
105 public final void setProperty(String propertyId, Object state) { argument
106 fProperties.put(propertyId, state);
H A DXSGrammarPoolContainer.java68 public Object getProperty(String propertyId); argument
73 public void setProperty(String propertyId, Object state); argument
H A DXMLSchemaValidatorComponentManager.java328 * @param propertyId The property identifier.
337 public PropertyState getPropertyState(String propertyId) argument
339 if (LOCALE.equals(propertyId)) {
342 final Object component = fComponents.get(propertyId);
346 else if (fComponents.containsKey(propertyId)) {
349 return super.getPropertyState(propertyId);
355 * @param propertyId The unique identifier (URI) of the property.
360 public void setProperty(String propertyId, Object value) throws XMLConfigurationException { argument
361 if ( ENTITY_MANAGER.equals(propertyId) || ERROR_REPORTER.equals(propertyId) ||
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DParserConfigurationSettings.java166 * @param propertyId
171 public void setProperty(String propertyId, Object value) argument
175 PropertyState checkState = checkProperty(propertyId);
177 throw new XMLConfigurationException(checkState.status, propertyId);
179 fProperties.put(propertyId, value);
233 * @param propertyId The property identifier.
242 public final Object getProperty(String propertyId) argument
245 PropertyState state = getPropertyState(propertyId);
247 throw new XMLConfigurationException(state.status, propertyId);
253 public final Object getProperty(String propertyId, Objec argument
262 getPropertyState(String propertyId) argument
314 checkProperty(String propertyId) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DSchemaValidatorConfiguration.java143 public PropertyState getPropertyState(String propertyId) { argument
144 if (XMLGRAMMAR_POOL.equals(propertyId)) {
147 else if (VALIDATION_MANAGER.equals(propertyId)) {
150 return fParentComponentManager.getPropertyState(propertyId);
156 * @param propertyId The property identifier.
165 public Object getProperty(String propertyId) argument
167 PropertyState state = getPropertyState(propertyId);
169 throw new XMLConfigurationException(state.status, propertyId);
182 public Object getProperty(String propertyId, Object defaultValue) { argument
183 PropertyState state = getPropertyState(propertyId);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDLoader.java294 * @param propertyId The property identifier.
298 public Object getProperty(String propertyId) argument
300 if (propertyId.equals(SYMBOL_TABLE)) {
303 else if (propertyId.equals(ERROR_REPORTER)) {
306 else if (propertyId.equals(ERROR_HANDLER)) {
309 else if (propertyId.equals(ENTITY_RESOLVER)) {
312 else if (propertyId.equals(LOCALE)) {
315 else if (propertyId.equals(GRAMMAR_POOL)) {
318 else if (propertyId.equals(DTD_VALIDATOR)) {
321 throw new XMLConfigurationException(Status.NOT_RECOGNIZED, propertyId);
339 setProperty(String propertyId, Object value) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DStandardParserConfiguration.java339 * @param propertyId The unique identifier (URI) of the property
348 protected PropertyState checkProperty(String propertyId) argument
355 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
356 final int suffixLength = propertyId.length() - Constants.XERCES_PROPERTY_PREFIX.length();
359 propertyId.endsWith(Constants.SCHEMA_LOCATION)) {
363 propertyId.endsWith(Constants.SCHEMA_NONS_LOCATION)) {
368 if (propertyId.startsWith(Constants.JAXP_PROPERTY_PREFIX)) {
369 final int suffixLength = propertyId.length() - Constants.JAXP_PROPERTY_PREFIX.length();
372 propertyId.endsWith(Constants.SCHEMA_SOURCE)) {
381 return super.checkProperty(propertyId);
[all...]
H A DBasicParserConfiguration.java279 String propertyId = recognizedProperties[i];
280 Object value = component.getPropertyDefault(propertyId);
282 super.setProperty(propertyId, value);
458 * @param propertyId
461 public void setProperty(String propertyId, Object value) argument
468 c.setProperty(propertyId, value);
472 super.setProperty(propertyId, value);
515 * @param propertyId The unique identifier (URI) of the property
520 protected PropertyState checkProperty(String propertyId) argument
524 if (propertyId
[all...]
H A DNonValidatingConfiguration.java381 public PropertyState getPropertyState(String propertyId) argument
383 if (LOCALE.equals(propertyId)) {
386 return super.getPropertyState(propertyId);
389 public void setProperty(String propertyId, Object value) argument
392 if (LOCALE.equals(propertyId)) {
395 super.setProperty(propertyId, value);
723 * @param propertyId The unique identifier (URI) of the property
732 protected PropertyState checkProperty(String propertyId) argument
739 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
740 final int suffixLength = propertyId
[all...]
H A DXML11NonValidatingConfiguration.java759 * @param propertyId
762 public void setProperty(String propertyId, Object value) argument
769 c.setProperty(propertyId, value);
775 c.setProperty(propertyId, value);
782 c.setProperty(propertyId, value);
790 super.setProperty(propertyId, value);
1037 * @param propertyId The unique identifier (URI) of the property
1046 protected PropertyState checkProperty(String propertyId) throws XMLConfigurationException { argument
1052 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
1053 final int suffixLength = propertyId
[all...]
H A DXML11Configuration.java949 * @param propertyId The property identifier.
958 public PropertyState getPropertyState(String propertyId) argument
960 if (LOCALE.equals(propertyId)) {
963 return super.getPropertyState(propertyId);
969 * @param propertyId
972 public void setProperty(String propertyId, Object value) argument
975 if (LOCALE.equals(propertyId)) {
982 c.setProperty(propertyId, value);
988 c.setProperty(propertyId, value);
995 c.setProperty(propertyId, valu
1373 checkProperty(String propertyId) argument
[all...]
H A DXIncludeParserConfiguration.java213 public void setProperty(String propertyId, Object value) argument
216 if (propertyId.equals(XINCLUDE_HANDLER)) {
219 super.setProperty(propertyId, value);
H A DDTDConfiguration.java415 public PropertyState getPropertyState(String propertyId) argument
417 if (LOCALE.equals(propertyId)) {
420 return super.getPropertyState(propertyId);
423 public void setProperty(String propertyId, Object value) argument
425 if (LOCALE.equals(propertyId)) {
428 super.setProperty(propertyId, value);
794 * @param propertyId The unique identifier (URI) of the property
803 protected PropertyState checkProperty(String propertyId) argument
810 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
811 final int suffixLength = propertyId
[all...]
H A DXML11DTDConfiguration.java833 * @param propertyId
836 public void setProperty(String propertyId, Object value) argument
843 c.setProperty(propertyId, value);
849 c.setProperty(propertyId, value);
856 c.setProperty(propertyId, value);
864 super.setProperty(propertyId, value);
1147 * @param propertyId The unique identifier (URI) of the property
1156 protected PropertyState checkProperty(String propertyId) throws XMLConfigurationException { argument
1162 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
1163 final int suffixLength = propertyId
[all...]
H A DAbstractSAXParser.java1846 * @param propertyId The unique identifier (URI) of the property
1856 public void setProperty(String propertyId, Object value) argument
1864 if (propertyId.startsWith(Constants.SAX_PROPERTY_PREFIX)) {
1865 final int suffixLength = propertyId.length() - Constants.SAX_PROPERTY_PREFIX.length();
1874 propertyId.endsWith(Constants.LEXICAL_HANDLER_PROPERTY)) {
1881 "incompatible-class", new Object [] {propertyId, "org.xml.sax.ext.LexicalHandler"}));
1892 propertyId.endsWith(Constants.DECLARATION_HANDLER_PROPERTY)) {
1899 "incompatible-class", new Object [] {propertyId, "org.xml.sax.ext.DeclHandler"}));
1918 propertyId.endsWith(Constants.DOM_NODE_PROPERTY)) ||
1920 propertyId
1978 getProperty(String propertyId) argument
[all...]
H A DDOMParser.java517 * @param propertyId The unique identifier (URI) of the property
527 public void setProperty(String propertyId, Object value) argument
531 fConfiguration.setProperty(propertyId, value);
555 * @param propertyId The unique identifier (URI) of the property
563 public Object getProperty(String propertyId) argument
566 if (propertyId.equals(CURRENT_ELEMENT_NODE)) {
582 return fConfiguration.getProperty(propertyId);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaParsingConfig.java460 * @param propertyId The property identifier.
469 public PropertyState getPropertyState(String propertyId) argument
471 if (LOCALE.equals(propertyId)) {
474 return super.getPropertyState(propertyId);
480 * @param propertyId
483 public void setProperty(String propertyId, Object value) argument
487 if (LOCALE.equals(propertyId)) {
492 fNamespaceScanner.setProperty(propertyId, value);
493 fDTDScanner.setProperty(propertyId, value);
498 fXML11DTDScanner.setProperty(propertyId, valu
898 checkProperty(String propertyId) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/grammars/
H A DXMLGrammarLoader.java83 * @param propertyId The property identifier.
87 public Object getProperty(String propertyId) argument
93 * @param propertyId The property identifier.
99 public void setProperty(String propertyId, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMNodeFactory.java136 * @param propertyId The property identifier.
144 public void setProperty(String propertyId, Object value) argument
148 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
149 final int suffixLength = propertyId.length() - Constants.XERCES_PROPERTY_PREFIX.length();
152 propertyId.endsWith(Constants.SECURITY_MANAGER_PROPERTY)) {
158 propertyId.endsWith(Constants.ERROR_REPORTER_PROPERTY)) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLErrorReporter.java569 * @param propertyId The property identifier.
577 public void setProperty(String propertyId, Object value) argument
584 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
585 final int suffixLength = propertyId.length() - Constants.XERCES_PROPERTY_PREFIX.length();
588 propertyId.endsWith(Constants.ERROR_HANDLER_PROPERTY)) {
618 * @param propertyId The property identifier.
622 public Object getPropertyDefault(String propertyId) { argument
624 if (RECOGNIZED_PROPERTIES[i].equals(propertyId)) {
H A DXMLNamespaceBinder.java294 * @param propertyId
297 public void setProperty(String propertyId, Object value) argument
301 if (propertyId.startsWith(Constants.XERCES_PROPERTY_PREFIX)) {
302 final int suffixLength = propertyId.length() - Constants.XERCES_PROPERTY_PREFIX.length();
305 propertyId.endsWith(Constants.SYMBOL_TABLE_PROPERTY)) {
309 propertyId.endsWith(Constants.ERROR_REPORTER_PROPERTY)) {
340 * @param propertyId The property identifier.
344 public Object getPropertyDefault(String propertyId) { argument
346 if (RECOGNIZED_PROPERTIES[i].equals(propertyId)) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerHandler.java1187 * @param propertyId The property identifier.
1196 public void setProperty(String propertyId, Object value) argument
1200 if (propertyId == Constants.XERCES_PROPERTY_PREFIX
1210 if (propertyId == Constants.XERCES_PROPERTY_PREFIX
1220 if (propertyId == Constants.XERCES_FEATURE_PREFIX
1230 if (propertyId == Constants.XERCES_FEATURE_PREFIX
1240 if (propertyId == Constants.XERCES_PROPERTY_PREFIX
1245 super.setProperty(propertyId, value);

Completed in 76 milliseconds

12