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