Interface NamespaceMappingParser
- All Known Implementing Classes:
- ParserRegistry
public interface NamespaceMappingParser
NamespaceMappingParser. This interface defines methods exposed by a namespace-mapping-aware
 parser (such as 
ParserRegistry)- Since:
- 6.0
- Author:
- Tristan Tarrant
- 
Method SummaryModifier and TypeMethodDescriptionvoidparseAttribute(ConfigurationReader reader, int i, ConfigurationBuilderHolder holder) Handle a namespaced attributevoidparseElement(ConfigurationReader reader, ConfigurationBuilderHolder holder) Recursively parses the current element of an XML stream using an appropriateConfigurationParserdepending on the element's namespace.
- 
Method Details- 
parseElementvoid parseElement(ConfigurationReader reader, ConfigurationBuilderHolder holder) throws ConfigurationReaderException Recursively parses the current element of an XML stream using an appropriateConfigurationParserdepending on the element's namespace.- Parameters:
- reader- the configuration stream reader
- holder- a configuration holder
- Throws:
- ConfigurationReaderException
 
- 
parseAttributevoid parseAttribute(ConfigurationReader reader, int i, ConfigurationBuilderHolder holder) throws ConfigurationReaderException Handle a namespaced attribute- Parameters:
- reader- the configuration stream reader
- i- the index of the attribute
- holder- a configuration holder
- Throws:
- ConfigurationReaderException
 
 
-