ResourceListDO

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

Primary key: element_hash_id: int

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

ResourceListDO::getParentHashId

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

ResourceListDO::getLocationHashId

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

ResourceListDO::__all__

Data constraint method.

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

ResourceListDO::getPrintableText

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