ModuleDO

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

Primary key: element_oid: int

schema ModuleDO {
  @primary element_oid: int,
  name: string,
  file_oid: int,
  location_oid: int
}

ModuleDO::getFileOid

/**
* @brief gets the file oid of this element.
* @return int
*/
pub fn getFileOid(self: ModuleDO) -> int;

ModuleDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: ModuleDO) -> int;

ModuleDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *ModuleDO;

ModuleDO::getName

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