AnonymousClassDO

/** * @brief DO class: An anonymous class. */ 

Primary key: element_hash_id: int

schema AnonymousClassDO { @primary element_hash_id: int, base_class_reference_hash_id: int, base_class_type_hash_id: int, location_hash_id: int, parent_hash_id: int } 

AnonymousClassDO::getParentHashId

/** * @brief gets the parent hash id of this element. * @return int */ 
pub fn getParentHashId(self: AnonymousClassDO) -> int; 

AnonymousClassDO::getLocationHashId

/** * @brief gets the location hash id of this element. * @return int */ 
pub fn getLocationHashId(self: AnonymousClassDO) -> int; 

AnonymousClassDO::__all__

Data constraint method.

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

AnonymousClassDO::getBaseClassTypeHashId

/** * @brief gets the base class type hash id of this element. * @return int */ 
pub fn getBaseClassTypeHashId(self: AnonymousClassDO) -> int; 

AnonymousClassDO::getBaseClassReferenceHashId

/** * @brief gets the reference element id specifying the base class for the anonymous class. * @return int */ 
pub fn getBaseClassReferenceHashId(self: AnonymousClassDO) -> int;