DoWhileStatementDO

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

Primary key: element_hash_id: int

schema DoWhileStatementDO {
  @primary element_hash_id: int,
  keyword: string,
  condition_hash_id: int,
  body_declaration_hash_id: int
}

DoWhileStatementDO::getConditionHashId

/**
* @brief gets the condition hash id of this element.
* @return int
*/
pub fn getConditionHashId(self: DoWhileStatementDO) -> int;

DoWhileStatementDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *DoWhileStatementDO;

DoWhileStatementDO::getBodyDeclarationHashId

/**
* @brief gets the body declaration hash id of this element.
* @return int
*/
pub fn getBodyDeclarationHashId(self: DoWhileStatementDO) -> int;

DoWhileStatementDO::getKeyword

/**
* @brief gets the keyword of this element.
* @return string
*/
pub fn getKeyword(self: DoWhileStatementDO) -> string;