ImportStaticStatementDO

/**
* @brief DO class: An import static statement.
*/

Primary key: element_hash_id: int

schema ImportStaticStatementDO {
  @primary element_hash_id: int,
  reference_hash_id: int,
  name: string,
  parent_hash_id: int,
  location_hash_id: int
}

ImportStaticStatementDO::getParentHashId

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

ImportStaticStatementDO::getPrintableText

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

ImportStaticStatementDO::getLocationHashId

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

ImportStaticStatementDO::__all__

Data constraint method.

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

ImportStaticStatementDO::getReferenceHashId

/**
* @brief gets the reference hash id of this element.
* @return int
*/
pub fn getReferenceHashId(self: ImportStaticStatementDO) -> int;