DoStatementDO

/**
* @brief DO class: A do statement.
*/

Primary key: oid: int

schema DoStatementDO {
  @primary oid: int,
  condition_expression_oid: int,
  body_statement_oid: int,
  printable_text: string
}

DoStatementDO::getBodyStatementOid

/**
* @brief gets the body statement oid of this element.
* @return int
*/
pub fn getBodyStatementOid(self: DoStatementDO) -> int;

DoStatementDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *DoStatementDO;

DoStatementDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: DoStatementDO) -> string;

DoStatementDO::getConditionExpressionOid

/**
* @brief gets the condition expression oid of this element.
* @return int
*/
pub fn getConditionExpressionOid(self: DoStatementDO) -> int;