AnnotationDeclarationDO

/**
* @brief DO class: An annotation declaration.
*/

Primary key: element_hash_id: int

schema AnnotationDeclarationDO {
  @primary element_hash_id: int,
  qualified_name: string
}

AnnotationDeclarationDO::getQualifiedName

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

AnnotationDeclarationDO::__all__

Data constraint method.

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