Modifier and Type | Method and Description |
---|---|
XMLNamespaces |
XMLNamespaces.cloneObject()
Creates and returns a deep copy of this
XMLNamespaces object. |
XMLNamespaces |
SBase.getNamespaces()
Returns a list of the XML Namespaces declared on the SBML document
owning this object.
|
XMLNamespaces |
SBMLDocument.getNamespaces()
Returns a list of XML Namespaces associated with the XML content
of this SBML document.
|
XMLNamespaces |
XMLToken.getNamespaces()
Returns the XML namespaces declared for this token.
|
XMLNamespaces |
SBMLNamespaces.getNamespaces()
Get the XML namespaces list for this
SBMLNamespaces object. |
Modifier and Type | Method and Description |
---|---|
void |
LayoutExtension.addL2Namespaces(XMLNamespaces xmlns)
adds all L2 Extension namespaces to the namespace list.
|
void |
SBMLExtensionRegistry.addL2Namespaces(XMLNamespaces xmlns)
Adds SBML Level 2 namespaces to the namespace list.
|
void |
RenderExtension.addL2Namespaces(XMLNamespaces xmlns)
adds all L2 Extension namespaces to the namespace list.
|
int |
SBMLNamespaces.addNamespaces(XMLNamespaces xmlns)
Add the given XML namespaces list to the set of namespaces within this
SBMLNamespaces object. |
int |
SBMLNamespaces.addPackageNamespaces(XMLNamespaces xmlns)
Add the XML namespaces of package extensions in the given XMLNamespace
object to the set of namespaces within this
SBMLNamespaces object
(Non-package XML namespaces are not added by this function). |
static XMLNode |
XMLNode.convertStringToXMLNode(java.lang.String xmlstr,
XMLNamespaces xmlns)
Returns an
XMLNode which is derived from a string containing XML
content. |
static ASTNode |
libsbml.readMathMLFromStringWithNamespaces(java.lang.String xml,
XMLNamespaces xmlns)
Reads the MathML from the given XML string, constructs a corresponding
abstract syntax tree, and returns a pointer to the root of the tree.
|
void |
LayoutExtension.removeL2Namespaces(XMLNamespaces xmlns)
Removes the L2 Namespace from a document.
|
void |
SBMLExtensionRegistry.removeL2Namespaces(XMLNamespaces xmlns)
Removes SBML Level 2 namespaces from the namespace list.
|
void |
RenderExtension.removeL2Namespaces(XMLNamespaces xmlns)
Removes the L2 Namespace from a document.
|
int |
SBase.setNamespaces(XMLNamespaces xmlns)
Sets the namespaces relevant of this SBML object.
|
int |
XMLToken.setNamespaces(XMLNamespaces namespaces)
Sets the XML namespaces on this XML element.
|
Constructor and Description |
---|
XMLNamespaces(XMLNamespaces orig)
Copy constructor; creates a copy of this
XMLNamespaces list. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line,
long column)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces)
Creates an XML start element with attributes and namespace declarations.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line)
Creates an XML start element with attributes and namespace declarations.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line,
long column)
Creates an XML start element with attributes and namespace declarations.
|