org.apache.felix.bundlerepository.metadataparser.kxmlsax
Interface KXml2SAXHandler

All Known Implementing Classes:
XmlCommonHandler

public interface KXml2SAXHandler

Interface for SAX handler with kXML


Method Summary
 void characters(char[] ch, int offset, int length)
          Method called when parsing text
 void endElement(String uri, String localName, String qName)
          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, String qName, Properties attrib)
          Method called when a tag opens
 

Method Detail

characters

void characters(char[] ch,
                int offset,
                int length)
                throws Exception
Method called when parsing text

Parameters:
ch -
offset -
length -
Throws:
SAXException
Exception

startElement

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

Parameters:
uri -
localName -
qName -
attrib -
Throws:
SAXException
Exception

endElement

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

Parameters:
uri -
localName -
qName -
Throws:
SAXException
Exception

processingInstruction

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

setLineNumber

void setLineNumber(int lineNumber)

setColumnNumber

void setColumnNumber(int columnNumber)


Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.