IfStatementDO

/**
* @brief DO class: An if statement.
*/

Primary key: oid: int

schema IfStatementDO {
  @primary oid: int,
  condition_expression_oid: int,
  then_statement_oid: int,
  printable_text: string
}

IfStatementDO::getThenStatementOid

/**
* @brief Gets the ‘then’ statement of this ‘if’ statement
* @return int
*/
pub fn getThenStatementOid(self: IfStatementDO) -> int;

IfStatementDO::__all__

Data constraint method.

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

IfStatementDO::getPrintableText

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

IfStatementDO::getConditionExpressionOid

/**
* @brief Gets the condition of this ‘if’ statement, the condition is an expression
* @return int
*/
pub fn getConditionExpressionOid(self: IfStatementDO) -> int;