LocalClassDO
/**
* @brief DO class: A local class.
*/
Primary key: element_hash_id: int
schema LocalClassDO {
@primary element_hash_id: int,
name: string,
printable_text: string,
location_hash_id: int,
parent_hash_id: int
}
LocalClassDO::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:LocalClassDO
- Return
int
pub fn getParentHashId(self: LocalClassDO) -> int;
LocalClassDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:LocalClassDO
- Return
string
pub fn getPrintableText(self: LocalClassDO) -> string;
LocalClassDO::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:LocalClassDO
- Return
int
pub fn getLocationHashId(self: LocalClassDO) -> int;
LocalClassDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*LocalClassDO
pub fn __all__(db: JavaDB) -> *LocalClassDO;
LocalClassDO::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:LocalClassDO
- Return
string
pub fn getName(self: LocalClassDO) -> string;