ElseStatementInIfDO

/**
* @brief DO class: Gets the ‘else’ statement of this ‘if’ statement, if any
*/

Primary key: oid: int

schema ElseStatementInIfDO {
  @primary oid: int,
  if_statement_oid: int
}

ElseStatementInIfDO::getIfStatementOid

/**
* @brief gets the if statement oid of this element.
* @return int
*/
pub fn getIfStatementOid(self: ElseStatementInIfDO) -> int;

ElseStatementInIfDO::__all__

Data constraint method.

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