XmlHasNamespaceDO

/**
* @brief DO class: Describe the name space relation.
*/

Primary key: id: int

schema XmlHasNamespaceDO {
  @primary id: int,
  element_id: int,
  namespace_id: int,
  container_id: int
}

XmlHasNamespaceDO::getNamespaceId

/**
* @brief gets the namespace id.
* @return int 
*/
pub fn getNamespaceId(self: XmlHasNamespaceDO) -> int;

XmlHasNamespaceDO::getContainerId

/**
* @brief gets the container id.
* @return int 
*/
pub fn getContainerId(self: XmlHasNamespaceDO) -> int;

XmlHasNamespaceDO::__all__

Data constraint method.

pub fn __all__(db: XmlDB) -> *XmlHasNamespaceDO;

XmlHasNamespaceDO::getElementId

/**
* @brief gets the element id.
* @return int 
*/
pub fn getElementId(self: XmlHasNamespaceDO) -> int;