TypeElementDO

/**
* @brief DO class: An occurrence of a type in source code, for example, as a return type of the method or the type of a method parameter.
*/

Primary key: element_hash_id: int

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

TypeElementDO::getPrintableText

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

TypeElementDO::getLocationHashId

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

TypeElementDO::__all__

Data constraint method.

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

TypeElementDO::getParentHashId

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

TypeElementDO::getReferenceTypeHashId

/**
* @brief gets the reference type hash id of this element.
* @return int
*/
pub fn getReferenceTypeHashId(self: TypeElementDO) -> int;