ReferenceListDO

/**
* @brief DO class: A reference list.
*/

Primary key: element_hash_id: int

schema ReferenceListDO {
  @primary element_hash_id: int,
  location_hash_id: int,
  parent_hash_id: int,
  printable_text: string,
  role: string
}

ReferenceListDO::getRole

/**
* @brief gets the role of this element.
* @return string
*/
pub fn getRole(self: ReferenceListDO) -> string;

ReferenceListDO::getPrintableText

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

ReferenceListDO::getParentHashId

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

ReferenceListDO::__all__

Data constraint method.

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

ReferenceListDO::getLocationHashId

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