net.n3.nanoxml.sax
public class SAXAdapter extends Object implements IXMLBuilder
Version: $Name: RELEASE_2_2_1 $, $Revision: 1.4 $
Constructor Summary | |
---|---|
SAXAdapter()
Creates the adapter. |
Method Summary | |
---|---|
void | addAttribute(String key, String nsPrefix, String nsSystemId, String value, String type)
This method is called when a new attribute of an XML element is
encountered.
|
void | addPCData(Reader reader, String systemID, int lineNr)
This method is called when a PCDATA element is encountered. |
void | elementAttributesProcessed(String name, String nsPrefix, String nsSystemId)
This method is called when the attributes of an XML element have been
processed.
|
void | endDocument()
Indicates that parsing has been completed. |
void | endElement(String name, String nsPrefix, String nsSystemId)
This method is called when the end of an XML elemnt is encountered.
|
protected void | finalize()
Cleans up the object when it's destroyed. |
Object | getResult()
Returns the result of the building process. |
void | newProcessingInstruction(String target, Reader reader)
This method is called when a processing instruction is encountered.
|
void | setDocumentHandler(DocumentHandler handler)
Sets the document handler.
|
void | setReader(IXMLReader reader)
Sets the reader.
|
void | startBuilding(String systemID, int lineNr)
This method is called before the parser starts processing its input.
|
void | startElement(String name, String nsPrefix, String nsSystemId, String systemID, int lineNr)
This method is called when a new XML element is encountered.
|
Parameters: key the key (name) of the attribute nsPrefix the prefix used to identify the namespace nsSystemId the system ID associated with the namespace value the value of the attribute type the type of the attribute ("CDATA" if unknown)
Parameters: reader the Java reader from which you can retrieve the data systemID the system ID of the data source lineNr the line in the source where the element starts
Throws: java.io.IOException when the reader throws such exception
Parameters: name the name of the element nsPrefix the prefix used to identify the namespace nsSystemId the system ID associated with the namespace
See Also: SAXAdapter SAXAdapter
Parameters: name the name of the element nsPrefix the prefix used to identify the namespace nsSystemId the system ID associated with the namespace
See Also: SAXAdapter
Returns: the result of the building process.
See Also: IXMLParser
Parameters: target the PI target reader to read the data from the PI
Parameters: handler the document handler
Parameters: reader the reader.
Parameters: systemID the system ID of the data source lineNr the line on which the parsing starts
Parameters: name the name of the element nsPrefix the prefix used to identify the namespace nsSystemId the system ID associated with the namespace systemID the system ID of the data source lineNr the line in the source where the element starts
See Also: SAXAdapter