VariableDO

/**
* @brief DO class: A variable.
*/

Primary key: element_oid: int

schema VariableDO {
  @primary element_oid: int,
  parent_oid: int,
  location_oid: int,
  printable_text: string,
  name: string
}

VariableDO::getName

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

VariableDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: VariableDO) -> int;

VariableDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *VariableDO;

VariableDO::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
pub fn getPrintableText(self: VariableDO) -> string;

VariableDO::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: VariableDO) -> int;