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
*/
- Parameter
self
:DoWhileStatementDO
- Return
int
pub fn getConditionHashId(self: DoWhileStatementDO) -> int;
DoWhileStatementDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*DoWhileStatementDO
pub fn __all__(db: JavaDB) -> *DoWhileStatementDO;
DoWhileStatementDO::getBodyDeclarationHashId
/**
* @brief gets the body declaration hash id of this element.
* @return int
*/
- Parameter
self
:DoWhileStatementDO
- Return
int
pub fn getBodyDeclarationHashId(self: DoWhileStatementDO) -> int;
DoWhileStatementDO::getKeyword
/**
* @brief gets the keyword of this element.
* @return string
*/
- Parameter
self
:DoWhileStatementDO
- Return
string
pub fn getKeyword(self: DoWhileStatementDO) -> string;