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
- Parameter
self
:ConstructorDO
- Return
string
pub fn getDefinitionBody(self: ConstructorDO) -> string;
ConstructorDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ConstructorDO
pub fn __all__(db: JavaDB) -> *ConstructorDO;
ConstructorDO::getLocationHashId
/** * @brief gets the location hash id of this element. * @return int */
- Parameter
self
:ConstructorDO
- Return
int
pub fn getLocationHashId(self: ConstructorDO) -> int;
ConstructorDO::getSignature
/** * @brief gets the signature of this element. * @return string */
- Parameter
self
:ConstructorDO
- Return
string
pub fn getSignature(self: ConstructorDO) -> string;
ConstructorDO::getName
/** * @brief gets the name of this element. * @return string */
- Parameter
self
:ConstructorDO
- Return
string
pub fn getName(self: ConstructorDO) -> string;
ConstructorDO::getParentHashId
/** * @brief gets the parent hash id of this element. * @return int */
- Parameter
self
:ConstructorDO
- Return
int
pub fn getParentHashId(self: ConstructorDO) -> int;