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
*/
- Parameter
self
:XmlElementNameDO
- Return
int
pub fn getLocationId(self: XmlElementNameDO) -> int;
XmlElementNameDO::getParentId
/**
* @brief gets the parent id of the element.
* @return int
*/
- Parameter
self
:XmlElementNameDO
- Return
int
pub fn getParentId(self: XmlElementNameDO) -> int;
XmlElementNameDO::__all__
Data constraint method.
- Parameter
db
:XmlDB
- Return
*XmlElementNameDO
pub fn __all__(db: XmlDB) -> *XmlElementNameDO;
XmlElementNameDO::getName
/**
* @brief gets the name of the element.
* @return string
*/
- Parameter
self
:XmlElementNameDO
- Return
string
pub fn getName(self: XmlElementNameDO) -> string;