WhileStatementDO

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

Primary key: oid: int

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

WhileStatementDO::getBodyStatementOid

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

WhileStatementDO::__all__

Data constraint method.

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

WhileStatementDO::getPrintableText

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

WhileStatementDO::getConditionExpressionOid

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