| org.compass.core.util.config.SAXConfigurationHandler org.compass.core.util.config.NamespacedSAXConfigurationHandler
NamespacedSAXConfigurationHandler | public class NamespacedSAXConfigurationHandler extends SAXConfigurationHandler (Code) | | A SAXConfigurationHandler helps build Configurations out of sax events,
including namespace information.
|
Method Summary | |
public void | characters(char[] ch, int start, int end) Handling hook for character data. | public void | clear() Clears all data from this configuration handler. | protected XmlConfigurationHelper | createConfiguration(String localName, String namespaceURI, String location) Create a new DefaultConfiguration with the specified local
name, namespace, and location. | public void | endDocument() Handling hook for ending the document parsing. | public void | endElement(String namespaceURI, String localName, String rawName) Handling hook for finishing parsing of an element. | public void | error(SAXParseException exception) This just throws an exception on a parse error. | public void | fatalError(SAXParseException exception) This just throws an exception on a parse error. | public ConfigurationHelper | getConfiguration() Get the configuration object that was built. | protected String | getLocationString() Returns a string showing the current system ID, line number and column
number. | public void | setDocumentLocator(Locator locator) Set the document Locator to use. | public void | startDocument() Handling hook for starting the document parsing. | public void | startElement(String namespaceURI, String localName, String rawName, Attributes attributes) Handling hook for starting parsing of an element. | public void | startPrefixMapping(String prefix, String uri) Handling hook for starting prefix mapping. | public void | warning(SAXParseException exception) This just throws an exception on a parse error. |
characters | public void characters(char[] ch, int start, int end) throws SAXException(Code) | | Handling hook for character data.
|
clear | public void clear()(Code) | | Clears all data from this configuration handler.
|
endDocument | public void endDocument() throws SAXException(Code) | | Handling hook for ending the document parsing.
|
getConfiguration | public ConfigurationHelper getConfiguration()(Code) | | Get the configuration object that was built.
a Configuration object |
getLocationString | protected String getLocationString()(Code) | | Returns a string showing the current system ID, line number and column
number.
|
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | Set the document Locator to use.
|
startDocument | public void startDocument() throws SAXException(Code) | | Handling hook for starting the document parsing.
|
|
|