AliasDO

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

Primary key: element_oid: int

schema AliasDO {
  @primary element_oid: int,
  name: string,
  asname: string,
  element_index: int,
  parent_oid: int,
  location_oid: int,
  printable_text: string
}

AliasDO::getPrintableText

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

AliasDO::getLocationOid

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

AliasDO::getName

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

AliasDO::__all__

Data constraint method.

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

AliasDO::getAsname

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

AliasDO::getElementIndex

/**
* @brief gets the element index of this element.
* @return int
*/
  • Parameter self: AliasDO
  • Return int
pub fn getElementIndex(self: AliasDO) -> int;

AliasDO::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
  • Parameter self: AliasDO
  • Return int
pub fn getParentOid(self: AliasDO) -> int;