OperatorDO

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

Primary key: element_oid: int

schema OperatorDO { @primary element_oid: int, location_oid: int, parent_oid: int, printable_text: string } 

OperatorDO::getPrintableText

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

OperatorDO::getParentOid

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

OperatorDO::__all__

Data constraint method.

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

OperatorDO::getLocationOid

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