NpClassDO

/** * @brief DO class: non-physical class. */ 

Primary key: element_hash_id: int

schema NpClassDO { @primary element_hash_id: int, name: string, qualified_name: string, parent_hash_id: int } 

NpClassDO::getParentHashId

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

NpClassDO::getQualifiedName

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

NpClassDO::__all__

Data constraint method.

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

NpClassDO::getName

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