ExpressionListDO

/**
* @brief DO class:  A list of expression separated by commas.
*/

Primary key: element_hash_id: int

schema ExpressionListDO {
  @primary element_hash_id: int,
  parent_hash_id: int,
  location_hash_id: int,
  printable_text: string,
  size: int
}

ExpressionListDO::getSize

pub fn getSize(self: ExpressionListDO) -> int;

ExpressionListDO::getPrintableText

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

ExpressionListDO::getLocationHashId

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

ExpressionListDO::__all__

Data constraint method.

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

ExpressionListDO::getParentHashId

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