ImportDO

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

Primary key: element_hash_id: int

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

ImportDO::__all__

Data constraint method.

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

ImportDO::getReferenceHashId

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

ImportDO::getLocationHashId

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

ImportDO::getIsForeignImport

/**
* @brief gets the is foreign import of this element.
* @return int
*/
pub fn getIsForeignImport(self: ImportDO) -> int;

ImportDO::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
  • Parameter self: ImportDO
  • Return string
pub fn getPrintableText(self: ImportDO) -> string;

ImportDO::getParentHashId

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