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
*/
- Parameter
self
:IfStatementDO
- Return
int
pub fn getThenStatementOid(self: IfStatementDO) -> int;
IfStatementDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*IfStatementDO
pub fn __all__(db: CfamilyDB) -> *IfStatementDO;
IfStatementDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:IfStatementDO
- 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
*/
- Parameter
self
:IfStatementDO
- Return
int
pub fn getConditionExpressionOid(self: IfStatementDO) -> int;