ConstructorDO

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

Primary key: element_hash_id: int

schema ConstructorDO {
  @primary element_hash_id: int,
  name: string,
  signature: string,
  parent_hash_id: int,
  location_hash_id: int,
  definition_body: string
}

ConstructorDO::getDefinitionBody

pub fn getDefinitionBody(self: ConstructorDO) -> string;

ConstructorDO::__all__

Data constraint method.

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

ConstructorDO::getLocationHashId

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

ConstructorDO::getSignature

/**
* @brief gets the signature of this element.
* @return string
*/
pub fn getSignature(self: ConstructorDO) -> string;

ConstructorDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: ConstructorDO) -> string;

ConstructorDO::getParentHashId

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