libSBML C# API
5.18.0
|
This class of objects is defined by libSBML only and has no direct equivalent in terms of SBML components. This class is not prescribed by the SBML specifications, although it is used to implement features defined in SBML.
SBMLExtensionNamespaces is a template class. It is extended from SBMLNamespaces and is meant to be used by package extensions to store the SBML Level, Version within a Level, and package version of the SBML Level 3 package implemented by a libSBML package extension.
SBML Level 3's package structure permits modular extensions to the core SBML format. In libSBML, support for SBML Level 3 packages is provided through optional package extensions that can be plugged into libSBML at the time it is built/compiled. Users of libSBML can thus choose which extensions are enabled in their software applications.
LibSBML defines a number of classes that developers of package extensions can use to implement support for an SBML Level 3 package. These classes make it easier to extend libSBML objects with new attributes and/or subobjects as needed by a particular Level 3 package. Three overall categories of classes make up libSBML's facilities for implementing package extensions. There are (1) classes that serve as base classes meant to be subclassed, (2) template classes meant to be instantiated rather than subclassed, and (3) support classes that provide utility features. A given package implementation for libSBML will take the form of code using these and other libSBML classes, placed in a subdirectory of src/sbml/packages/
.
The basic libSBML distribution includes a number of package extensions implementing support for officially-endorsed SBML Level 3 packages; among these are Flux Balance Constraints ('fbc'), Hierarchical Model Composition ('comp'), Layout ('layout'), and Qualitative Models ('qual'). They can serve as working examples for developers working to implement other packages.
Extensions in libSBML can currently only be implemented in C++ or C; there is no mechanism to implement them first in languages such as Java or Python. However, once implemented in C++ or C, language interfaces can be generated semi-automatically using the framework in place in libSBML. (The approach is based on using SWIG and facilities in libSBML's build system.)
Public Member Functions | |
int | addNamespace (string uri, string prefix) |
Add an XML namespace (a pair of URI and prefix) to the set of namespaces within this SBMLNamespaces object. More... | |
int | addNamespaces (XMLNamespaces xmlns) |
Add the given XML namespaces list to the set of namespaces within this SBMLNamespaces object. More... | |
int | addPackageNamespace (string pkgName, long pkgVersion, string prefix) |
Add an XML namespace (a pair of URI and prefix) of a package extension to the set of namespaces within this SBMLNamespaces object. More... | |
int | addPackageNamespace (string pkgName, long pkgVersion) |
Add an XML namespace (a pair of URI and prefix) of a package extension to the set of namespaces within this SBMLNamespaces object. More... | |
int | 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). More... | |
int | addPkgNamespace (string pkgName, long pkgVersion, string prefix) |
int | addPkgNamespace (string pkgName, long pkgVersion) |
int | addPkgNamespaces (XMLNamespaces xmlns) |
new SBMLNamespaces | clone () |
Creates and returns a deep copy of this SBMLNamespaces object. More... | |
override void | Dispose () |
override bool | Equals (Object sb) |
override int | GetHashCode () |
long | getLevel () |
Get the SBML Level of this SBMLNamespaces object. More... | |
XMLNamespaces | getNamespaces () |
Get the XML namespaces list for this SBMLNamespaces object. More... | |
new string | getPackageName () |
Returns the name of the main package for this namespace. More... | |
long | getPackageVersion () |
new string | getURI () |
Returns a string representing the SBML XML namespace of this object. More... | |
long | getVersion () |
Get the SBML Version of this SBMLNamespaces object. More... | |
bool | isValidCombination () |
Predicate returning true if the given set of namespaces represent a valid set. More... | |
QualPkgNamespaces (long level, long version, long pkgVersion, string prefix) | |
QualPkgNamespaces (long level, long version, long pkgVersion) | |
QualPkgNamespaces (long level, long version) | |
QualPkgNamespaces (long level) | |
QualPkgNamespaces () | |
QualPkgNamespaces (QualPkgNamespaces orig) | |
int | removeNamespace (string uri) |
Removes an XML namespace from the set of namespaces within this SBMLNamespaces object. More... | |
int | removePackageNamespace (long level, long version, string pkgName, long pkgVersion) |
Removes an XML namespace of a package extension from the set of namespaces within this SBMLNamespaces object. More... | |
int | removePkgNamespace (long level, long version, string pkgName, long pkgVersion) |
Static Public Member Functions | |
static void | freeSBMLNamespaces (SWIGTYPE_p_List supportedNS) |
Frees the list of supported namespaces as generated by getSupportedNamespaces(). More... | |
static string | getSBMLNamespaceURI (long level, long version) |
Returns a string representing the SBML XML namespace for the given level and version of SBML. More... | |
static SBMLNamespacesList | getSupportedNamespaces () |
Returns a list of all supported SBMLNamespaces in this version of libsbml. More... | |
static bool | isSBMLNamespace (string uri) |
Predicate returning true if the given URL is one of SBML XML namespaces. More... | |
static bool | operator!= (SBMLNamespaces lhs, SBMLNamespaces rhs) |
static bool | operator== (SBMLNamespaces lhs, SBMLNamespaces rhs) |
Protected Attributes | |
bool | swigCMemOwn |
libsbmlcs.QualPkgNamespaces.QualPkgNamespaces | ( | long | level, |
long | version, | ||
long | pkgVersion, | ||
string | prefix | ||
) |
libsbmlcs.QualPkgNamespaces.QualPkgNamespaces | ( | long | level, |
long | version, | ||
long | pkgVersion | ||
) |
libsbmlcs.QualPkgNamespaces.QualPkgNamespaces | ( | long | level, |
long | version | ||
) |
libsbmlcs.QualPkgNamespaces.QualPkgNamespaces | ( | long | level | ) |
libsbmlcs.QualPkgNamespaces.QualPkgNamespaces | ( | ) |
libsbmlcs.QualPkgNamespaces.QualPkgNamespaces | ( | QualPkgNamespaces | orig | ) |
|
inherited |
Add an XML namespace (a pair of URI and prefix) to the set of namespaces within this SBMLNamespaces object.
uri | the XML namespace to be added. |
prefix | the prefix of the namespace to be added. |
|
inherited |
Add the given XML namespaces list to the set of namespaces within this SBMLNamespaces object.
The following code gives an example of how one could add the XHTML namespace to the list of namespaces recorded by the top-level <sbml>
element of a model. It gives the new namespace a prefix of html
.
xmlns | the XML namespaces to be added. |
|
inherited |
Add an XML namespace (a pair of URI and prefix) of a package extension to the set of namespaces within this SBMLNamespaces object.
The SBML Level and SBML Version of this object is used.
pkgName | the string of package name (e.g. 'layout', 'multi'). |
pkgVersion | the package version. |
prefix | the prefix of the package namespace to be added. The package's name will be used if the given string is empty (default). |
|
inherited |
Add an XML namespace (a pair of URI and prefix) of a package extension to the set of namespaces within this SBMLNamespaces object.
The SBML Level and SBML Version of this object is used.
pkgName | the string of package name (e.g. 'layout', 'multi'). |
pkgVersion | the package version. |
prefix | the prefix of the package namespace to be added. The package's name will be used if the given string is empty (default). |
|
inherited |
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).
xmlns | the XML namespaces to be added. |
null
.
|
inherited |
|
inherited |
|
inherited |
new SBMLNamespaces libsbmlcs.QualPkgNamespaces.clone | ( | ) |
Creates and returns a deep copy of this SBMLNamespaces object.
|
virtual |
Reimplemented from libsbmlcs.SBMLNamespaces.
|
inherited |
|
staticinherited |
Frees the list of supported namespaces as generated by getSupportedNamespaces().
supportedNS | the list to be freed. |
|
inherited |
|
inherited |
Get the SBML Level of this SBMLNamespaces object.
|
inherited |
Get the XML namespaces list for this SBMLNamespaces object.
SBMLNamespaces objects are used in libSBML to communicate SBML Level and Version data between constructors and other methods. The SBMLNamespaces object class holds triples consisting of SBML Level, Version, and the corresponding SBML XML namespace. Most constructors for SBML objects in libSBML take a SBMLNamespaces object as an argument, thereby allowing the constructor to produce the proper combination of attributes and other internal data structures for the given SBML Level and Version.
The plural name (SBMLNamespaces) is not a mistake, because in SBML Level 3, objects may have extensions added by Level 3 packages used by a given model and therefore may have multiple namespaces associated with them. In SBML Levels below Level 3, the SBMLNamespaces object only records one SBML Level/Version/namespace combination at a time. Most constructors for SBML objects in libSBML take a SBMLNamespaces object as an argument, thereby allowing the constructor to produce the proper combination of attributes and other internal data structures for the given SBML Level and Version.
new string libsbmlcs.QualPkgNamespaces.getPackageName | ( | ) |
Returns the name of the main package for this namespace.
long libsbmlcs.QualPkgNamespaces.getPackageVersion | ( | ) |
|
staticinherited |
Returns a string representing the SBML XML namespace for the given level
and version
of SBML.
level | the SBML level. |
version | the SBML version. |
|
staticinherited |
Returns a list of all supported SBMLNamespaces in this version of libsbml.
new string libsbmlcs.QualPkgNamespaces.getURI | ( | ) |
Returns a string representing the SBML XML namespace of this object.
|
inherited |
Get the SBML Version of this SBMLNamespaces object.
|
staticinherited |
Predicate returning true
if the given URL is one of SBML XML namespaces.
uri | the URI of namespace. |
true
if the 'uri' is one of SBML namespaces, false
otherwise.
|
inherited |
Predicate returning true
if the given set of namespaces represent a valid set.
true
if the set of namespaces is valid, false
otherwise.
|
staticinherited |
|
staticinherited |
|
inherited |
Removes an XML namespace from the set of namespaces within this SBMLNamespaces object.
uri | the XML namespace to be added. |
|
inherited |
Removes an XML namespace of a package extension from the set of namespaces within this SBMLNamespaces object.
level | the SBML level. |
version | the SBML version. |
pkgName | the string of package name (e.g. 'layout', 'multi'). |
pkgVersion | the package version. |
|
inherited |
|
protectedinherited |