ReferenceType

/**
* @brief A java reference type.
*/

Inherit from ReferenceTypeDO

Primary key: oid: int

schema ReferenceType extends ReferenceTypeDO {
  @primary oid: int,
  name: string,
  qualified_name: string
}

ReferenceType::getName

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

ReferenceType::__all__

Data constraint method.

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

ReferenceType::getQualifiedName

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