ClassDO

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

Primary key: element_hash_id: int

schema ClassDO {
  @primary element_hash_id: int,
  qualified_name: string,
  identifier_hash_id: int,
  location_hash_id: int,
  parent_hash_id: int
}

ClassDO::getParentHashId

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

ClassDO::getIdentifierHashId

/**
* @brief gets the identifier hash id of this element.
* @return int
*/
  • Parameter self: ClassDO
  • Return int
pub fn getIdentifierHashId(self: ClassDO) -> int;

ClassDO::getLocationHashId

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

ClassDO::__all__

Data constraint method.

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

ClassDO::getQualifiedName

/**
* @brief gets the qualified name of this element.
* @return string
*/
  • Parameter self: ClassDO
  • Return string
pub fn getQualifiedName(self: ClassDO) -> string;