Interface XMLComponentManager
-
- All Known Subinterfaces:
XMLParserConfiguration
- All Known Implementing Classes:
HTMLConfiguration
,ParserConfigurationSettings
public interface XMLComponentManager
The component manager manages a parser configuration and the components that make up that configuration. The manager notifies each component before parsing to allow the components to initialize their state; and also any time that a parser feature or property changes.The methods of the component manager allow components to query features and properties that affect the operation of the component.
- See Also:
XMLComponent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getFeature(java.lang.String featureId)
java.lang.Object
getProperty(java.lang.String propertyId)
-
-
-
Method Detail
-
getFeature
boolean getFeature(java.lang.String featureId) throws XMLConfigurationException
- Parameters:
featureId
- The feature identifier.- Returns:
- the state of a feature.
- Throws:
XMLConfigurationException
- Thrown on configuration error.
-
getProperty
java.lang.Object getProperty(java.lang.String propertyId) throws XMLConfigurationException
- Parameters:
propertyId
- The property identifier.- Returns:
- the value of a property.
- Throws:
XMLConfigurationException
- Thrown on configuration error.
-
-