public class XMLNodeReader extends java.lang.Object implements ReadingParser
XMLNodeReader can be used to store any XML into an XMLNode.
At the moment, it is used to read the content of the 'notes', 'annotation' and 'message' SBML elements.
| Modifier and Type | Field and Description |
|---|---|
private static org.apache.log4j.Logger |
logger
A
Logger for this class. |
private static java.util.List<java.lang.String> |
namespaces |
private java.lang.String |
typeOfNotes
String to be able to detect what type of String this parser is parsing.
|
| Constructor and Description |
|---|
XMLNodeReader() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
getNamespaces()
Returns a
List of all the namespaces that this parser is handling. |
java.lang.String |
getTypeOfNotes() |
boolean |
processAttribute(java.lang.String elementName,
java.lang.String attributeName,
java.lang.String value,
java.lang.String uri,
java.lang.String prefix,
boolean isLastAttribute,
java.lang.Object contextObject)
Process the XML attribute and modify 'contextObject' in consequence.
|
void |
processCharactersOf(java.lang.String elementName,
java.lang.String characters,
java.lang.Object contextObject)
Process the text of a XML element and modify 'contextObject' in
consequence.
|
void |
processEndDocument(SBMLDocument sbmlDocument)
Process the end of the document.
|
boolean |
processEndElement(java.lang.String elementName,
java.lang.String prefix,
boolean isNested,
java.lang.Object contextObject)
Process the end of the element 'elementName'.
|
void |
processNamespace(java.lang.String elementName,
java.lang.String uri,
java.lang.String prefix,
java.lang.String localName,
boolean hasAttributes,
boolean isLastNamespace,
java.lang.Object contextObject)
Process the namespace and modify the contextObject in consequence.
|
java.lang.Object |
processStartElement(java.lang.String elementName,
java.lang.String uri,
java.lang.String prefix,
boolean hasAttributes,
boolean hasNamespaces,
java.lang.Object contextObject)
Process the XML element and modify 'contextObject' in consequence.
|
void |
setTypeOfNotes(java.lang.String typeOfNotes)
Sets the typeOfNote of this parser.
|
private java.lang.String typeOfNotes
private static final transient org.apache.log4j.Logger logger
Logger for this class.private static final java.util.List<java.lang.String> namespaces
public java.lang.String getTypeOfNotes()
public boolean processAttribute(java.lang.String elementName,
java.lang.String attributeName,
java.lang.String value,
java.lang.String uri,
java.lang.String prefix,
boolean isLastAttribute,
java.lang.Object contextObject)
ReadingParserFor example, if the contextObject is an instance of Reaction and the
attributeName is 'fast', this method will set the 'fast' variable of the
'contextObject' to 'value'. Then it will return the modified
Reaction instance.
processAttribute in interface ReadingParserelementName - the localName of the XML element.attributeName - the attribute localName of the XML element.value - the value of the XML attribute.prefix - the attribute prefixisLastAttribute - boolean value to know if this attribute is the last attribute of the
XML element.contextObject - the object to set or modify depending on the identity of the current
attribute. This object
represents the context of the XML attribute in the SBMLDocument.public void processCharactersOf(java.lang.String elementName,
java.lang.String characters,
java.lang.Object contextObject)
ReadingParserFor example, if the contextObject is an instance of
Creator and the elementName is 'Family',
this method will set the familyName of the 'contextObject' to the text
value. Then it will return the changed Creator
instance.
processCharactersOf in interface ReadingParserelementName - the localName of the XML element.characters - the text of this XML element.contextObject - the object to set or modify depending on the identity of the current
element. This object
represents the context of the XML element in the SBMLDocument.public void processEndDocument(SBMLDocument sbmlDocument)
ReadingParserprocessEndDocument in interface ReadingParsersbmlDocument - the final initialized SBMLDocument instance.public boolean processEndElement(java.lang.String elementName,
java.lang.String prefix,
boolean isNested,
java.lang.Object contextObject)
ReadingParserprocessEndElement in interface ReadingParserelementName - the localName of the XML element.prefix - the prefix of the XML element.isNested - boolean value to know if the XML element is a nested element.contextObject - the object to set or modify depending on the identity of the current
element. This object
represents the context of the XML element in the SBMLDocument.true to remove the contextObject from the stack, if
false is returned the contextObject will stay on top
of the stackpublic void processNamespace(java.lang.String elementName,
java.lang.String uri,
java.lang.String prefix,
java.lang.String localName,
boolean hasAttributes,
boolean isLastNamespace,
java.lang.Object contextObject)
ReadingParserFor example, if the contextObject is an instance of SBMLDocument, the namespaces will be stored in the SBMLNamespaces HashMap of this SBMLDocument.
processNamespace in interface ReadingParserelementName - the localName of the XML element.uri - the URI of the namespaceprefix - the prefix of the namespace.localName - the localName of the namespace.hasAttributes - boolean value to know if there are attributes after the namespace
declarations.isLastNamespace - boolean value to know if this namespace is the last namespace of
this element.contextObject - the object to set or modify depending on the identity of the current
element. This object
represents the context of the XML element in the SBMLDocument.public java.lang.Object processStartElement(java.lang.String elementName,
java.lang.String uri,
java.lang.String prefix,
boolean hasAttributes,
boolean hasNamespaces,
java.lang.Object contextObject)
ReadingParserFor example, if the contextObject is an instance of Event and the
elementName is 'trigger', this method will create a new Trigger instance
and will set the trigger instance of the 'contextObject' to the new
Trigger. Then the method will return the new Trigger instance which is the
new environment.
processStartElement in interface ReadingParserelementName - the localName of the XML element to processprefix - the prefix of the XML element to processhasAttributes - boolean value to know if this XML element has attributes.hasNamespaces - boolean value to know if this XML element contains namespace
declarations.contextObject - the object to set or modify depending on the identity of the current
XML element. This object
represents the context of the XML element in the SBMLDocument.public void setTypeOfNotes(java.lang.String typeOfNotes)
typeOfNotes - public java.util.List<java.lang.String> getNamespaces()
ReadingParserList of all the namespaces that this parser is handling.getNamespaces in interface ReadingParserList of all the namespaces that this parser is handling