org.apache.felix.scr.impl.parser
Interface KXml2SAXHandler

All Known Implementing Classes:
XmlHandler

public interface KXml2SAXHandler

Interface for a SAX like handler with kXML


Method Summary
 void characters(String text)
          Method called when parsing text
 void endElement(String uri, String localName)
          Method called when a tag closes
 void processingInstruction(String target, String data)
           
 void setColumnNumber(int columnNumber)
           
 void setLineNumber(int lineNumber)
           
 void startElement(String uri, String localName, Properties attrib)
          Method called when a tag opens
 

Method Detail

characters

void characters(String text)
                throws ParseException
Method called when parsing text

Parameters:
text -
Throws:
ParseException

startElement

void startElement(String uri,
                  String localName,
                  Properties attrib)
                  throws ParseException
Method called when a tag opens

Parameters:
uri -
localName -
attrib -
Throws:
ParseException

endElement

void endElement(String uri,
                String localName)
                throws ParseException
Method called when a tag closes

Parameters:
uri -
localName -
Throws:
ParseException

processingInstruction

void processingInstruction(String target,
                           String data)
                           throws Exception
Throws:
Exception

setLineNumber

void setLineNumber(int lineNumber)

setColumnNumber

void setColumnNumber(int columnNumber)


Copyright © 2013 The Apache Software Foundation. All Rights Reserved.