Package net.n3.nanoxml
Class StdXMLBuilder
- java.lang.Object
-
- net.n3.nanoxml.StdXMLBuilder
-
- All Implemented Interfaces:
IXMLBuilder
public class StdXMLBuilder extends java.lang.Object implements IXMLBuilder
StdXMLBuilder is a concrete implementation of IXMLBuilder which creates a tree of IXMLElement from an XML data source.- Author:
- Marc De Scheemaecker
- See Also:
XMLElement
-
-
Constructor Summary
Constructors Constructor Description StdXMLBuilder()Creates the builder.StdXMLBuilder(IXMLElement prototype)Creates the builder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAttribute(java.lang.String key, java.lang.String nsPrefix, java.lang.String nsURI, java.lang.String value, java.lang.String type)This method is called when a new attribute of an XML element is encountered.voidaddPCData(java.io.Reader reader, java.lang.String systemID, int lineNr)This method is called when a PCDATA element is encountered.voidelementAttributesProcessed(java.lang.String name, java.lang.String nsPrefix, java.lang.String nsURI)This method is called when the attributes of an XML element have been processed.voidendElement(java.lang.String name, java.lang.String nsPrefix, java.lang.String nsURI)This method is called when the end of an XML elemnt is encountered.protected voidfinalize()Cleans up the object when it's destroyed.java.lang.ObjectgetResult()Returns the result of the building process.voidnewProcessingInstruction(java.lang.String target, java.io.Reader reader)This method is called when a processing instruction is encountered.voidstartBuilding(java.lang.String systemID, int lineNr)This method is called before the parser starts processing its input.voidstartElement(java.lang.String name, java.lang.String nsPrefix, java.lang.String nsURI, java.lang.String systemID, int lineNr)This method is called when a new XML element is encountered.
-
-
-
Constructor Detail
-
StdXMLBuilder
public StdXMLBuilder()
Creates the builder.
-
StdXMLBuilder
public StdXMLBuilder(IXMLElement prototype)
Creates the builder.- Parameters:
prototype- the prototype to use when building the tree.
-
-
Method Detail
-
finalize
protected void finalize() throws java.lang.ThrowableCleans up the object when it's destroyed.- Overrides:
finalizein classjava.lang.Object- Throws:
java.lang.Throwable
-
startBuilding
public void startBuilding(java.lang.String systemID, int lineNr)This method is called before the parser starts processing its input.- Specified by:
startBuildingin interfaceIXMLBuilder- Parameters:
systemID- the system ID of the XML data source.lineNr- the line on which the parsing starts.
-
newProcessingInstruction
public void newProcessingInstruction(java.lang.String target, java.io.Reader reader)This method is called when a processing instruction is encountered. PIs with target "xml" are handled by the parser.- Specified by:
newProcessingInstructionin interfaceIXMLBuilder- Parameters:
target- the PI target.reader- to read the data from the PI.
-
startElement
public void startElement(java.lang.String name, java.lang.String nsPrefix, java.lang.String nsURI, java.lang.String systemID, int lineNr)This method is called when a new XML element is encountered.- Specified by:
startElementin interfaceIXMLBuilder- Parameters:
name- the name of the element.nsPrefix- the prefix used to identify the namespace. If no namespace has been specified, this parameter is null.nsURI- the URI associated with the namespace. If no namespace has been specified, or no URI is associated with nsPrefix, this parameter is null.systemID- the system ID of the XML data source.lineNr- the line in the source where the element starts.- See Also:
endElement(java.lang.String, java.lang.String, java.lang.String)
-
elementAttributesProcessed
public void elementAttributesProcessed(java.lang.String name, java.lang.String nsPrefix, java.lang.String nsURI)This method is called when the attributes of an XML element have been processed.- Specified by:
elementAttributesProcessedin interfaceIXMLBuilder- Parameters:
name- the name of the element.nsPrefix- the prefix used to identify the namespace. If no namespace has been specified, this parameter is null.nsURI- the URI associated with the namespace. If no namespace has been specified, or no URI is associated with nsPrefix, this parameter is null.- See Also:
startElement(java.lang.String, java.lang.String, java.lang.String, java.lang.String, int),addAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
-
endElement
public void endElement(java.lang.String name, java.lang.String nsPrefix, java.lang.String nsURI)This method is called when the end of an XML elemnt is encountered.- Specified by:
endElementin interfaceIXMLBuilder- Parameters:
name- the name of the element.nsPrefix- the prefix used to identify the namespace. If no namespace has been specified, this parameter is null.nsURI- the URI associated with the namespace. If no namespace has been specified, or no URI is associated with nsPrefix, this parameter is null.- See Also:
startElement(java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)
-
addAttribute
public void addAttribute(java.lang.String key, java.lang.String nsPrefix, java.lang.String nsURI, java.lang.String value, java.lang.String type) throws java.lang.ExceptionThis method is called when a new attribute of an XML element is encountered.- Specified by:
addAttributein interfaceIXMLBuilder- Parameters:
key- the key (name) of the attribute.nsPrefix- the prefix used to identify the namespace. If no namespace has been specified, this parameter is null.nsURI- the URI associated with the namespace. If no namespace has been specified, or no URI is associated with nsPrefix, this parameter is null.value- the value of the attribute.type- the type of the attribute. If no type is known, "CDATA" is returned.- Throws:
java.lang.Exception- If an exception occurred while processing the event.
-
addPCData
public void addPCData(java.io.Reader reader, java.lang.String systemID, int lineNr)This method is called when a PCDATA element is encountered. A Java reader is supplied from which you can read the data. The reader will only read the data of the element. You don't need to check for boundaries. If you don't read the full element, the rest of the data is skipped. You also don't have to care about entities; they are resolved by the parser.- Specified by:
addPCDatain interfaceIXMLBuilder- Parameters:
reader- the Java reader from which you can retrieve the data.systemID- the system ID of the XML data source.lineNr- the line in the source where the element starts.
-
getResult
public java.lang.Object getResult()
Returns the result of the building process. This method is called just before the parse method of IXMLParser returns.- Specified by:
getResultin interfaceIXMLBuilder- Returns:
- the result of the building process.
- See Also:
IXMLParser.parse()
-
-