CupackageDO

/**
* @brief DO class: A compilation unit and its declared package.
*/

Primary key: file_hash_id: int

schema CupackageDO {
  @primary file_hash_id: int,
  package_hash_id: int
}

CupackageDO::getPackageHashId

/**
* @brief gets the package hash id of this element.
* @return int
*/
pub fn getPackageHashId(self: CupackageDO) -> int;

CupackageDO::__all__

Data constraint method.

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