ReferenceList

/**
* @brief A list of reference separated by commas.
*/

Inherit from ReferenceListDO

Primary key: element_hash_id: int

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

ReferenceList::getParentHashId

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

ReferenceList::getPrintableText

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

ReferenceList::getChild

/**
* @brief gets the reference element of the list
* @return ReferenceElement 
*/
pub fn getChild(self: ReferenceList) -> *ReferenceElement;

ReferenceList::getRole

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

ReferenceList::__all__

Data constraint method.

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

ReferenceList::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return ElementParent 
*/
pub fn getAnAncestor(self: ReferenceList) -> *ElementParent;

ReferenceList::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: ReferenceList) -> Location;

ReferenceList::getLocationHashId

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

ReferenceList::getParent

/**
* @brief gets the location for the element.
* @return ElementParent
*/
pub fn getParent(self: ReferenceList) -> ElementParent;