VariableDO

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

Primary key: element_oid: int

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

VariableDO::getStartIndex

/**
* @brief gets the start index of this element.
* @return int
*/
pub fn getStartIndex(self: VariableDO) -> int;

VariableDO::getName

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

VariableDO::__all__

Data constraint method.

pub fn __all__(db: PropertiesDB) -> *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;