XmlHasNamespace
/**
* @brief Describe the name space relation.
*/
Inherit from XmlHasNamespaceDO
Primary key: id: int
schema XmlHasNamespace extends XmlHasNamespaceDO {
@primary id: int,
element_id: int,
namespace_id: int,
container_id: int
}
XmlHasNamespace::getElementId
/**
* @brief gets the element id.
* @return int
*/
- Parameter
self
:XmlHasNamespace
- Return
int
pub fn getElementId(self: XmlHasNamespace) -> int;
XmlHasNamespace::getContainerId
/**
* @brief gets the container id.
* @return int
*/
- Parameter
self
:XmlHasNamespace
- Return
int
pub fn getContainerId(self: XmlHasNamespace) -> int;
XmlHasNamespace::getXmlElement
/**
* @brief gets the element of the relation.
* @return XmlElement
*/
- Parameter
self
:XmlHasNamespace
- Return
XmlElement
pub fn getXmlElement(self: XmlHasNamespace) -> XmlElement;
XmlHasNamespace::getNamespaceId
/**
* @brief gets the namespace id.
* @return int
*/
- Parameter
self
:XmlHasNamespace
- Return
int
pub fn getNamespaceId(self: XmlHasNamespace) -> int;
XmlHasNamespace::__all__
Data constraint method.
- Parameter
db
:XmlDB
- Return
*XmlHasNamespace
pub fn __all__(db: XmlDB) -> *XmlHasNamespace;
XmlHasNamespace::getXmlNamespace
/**
* @brief gets the namespace of the relation.
* @return XmlNamespace
*/
- Parameter
self
:XmlHasNamespace
- Return
XmlNamespace
pub fn getXmlNamespace(self: XmlHasNamespace) -> XmlNamespace;
XmlHasNamespace::getFile
/**
* @brief gets the file of the location.
* @return XmlFile
*/
- Parameter
self
:XmlHasNamespace
- Return
XmlFile
pub fn getFile(self: XmlHasNamespace) -> XmlFile;