ClassInitializerDO

/**
* @brief DO class: A java class initializer block.
*/

Primary key: element_hash_id: int

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

ClassInitializerDO::getParentHashId

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

ClassInitializerDO::getLocationHashId

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

ClassInitializerDO::__all__

Data constraint method.

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

ClassInitializerDO::getPrintableText

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