LocalClassDO

/** * @brief DO class: A local class. */ 

Primary key: element_hash_id: int

schema LocalClassDO { @primary element_hash_id: int, name: string, printable_text: string, location_hash_id: int, parent_hash_id: int } 

LocalClassDO::getParentHashId

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

LocalClassDO::getPrintableText

/** * @brief gets a printed representation of this element, including its structure where applicable. * @return string. */ 
pub fn getPrintableText(self: LocalClassDO) -> string; 

LocalClassDO::getLocationHashId

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

LocalClassDO::__all__

Data constraint method.

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

LocalClassDO::getName

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