LocalVariableDO

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

Primary key: element_hash_id: int

schema LocalVariableDO {
  @primary element_hash_id: int,
  parent_hash_id: int,
  location_hash_id: int,
  printable_text: string,
  name: string,
  index_order: int
}

LocalVariableDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *LocalVariableDO;

LocalVariableDO::getLocationHashId

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

LocalVariableDO::getIndex

/**
* @brief gets the index order of this element.
* @return int
*/
pub fn getIndex(self: LocalVariableDO) -> int;

LocalVariableDO::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: LocalVariableDO) -> int;

LocalVariableDO::getName

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

LocalVariableDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: LocalVariableDO) -> string;