XmlElementNameDO

/**
* @brief DO class: An xml element name.
*/

Primary key: id: int

schema XmlElementNameDO {
  name: string,
  @primary id: int,
  parent_id: int,
  location_id: int
}

XmlElementNameDO::getLocationId

/**
* @brief gets the location id of this element.
* @return int
*/
pub fn getLocationId(self: XmlElementNameDO) -> int;

XmlElementNameDO::getParentId

/**
* @brief gets the parent id of the element.
* @return int
*/
pub fn getParentId(self: XmlElementNameDO) -> int;

XmlElementNameDO::__all__

Data constraint method.

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

XmlElementNameDO::getName

/**
* @brief gets the name of the element.
* @return string 
*/
pub fn getName(self: XmlElementNameDO) -> string;