BlockStatementDO
/**
* @brief DO class: A block statement (sequence of statements surrounded with curly braces).
*/
Primary key: element_hash_id: int
schema BlockStatementDO {
@primary element_hash_id: int,
code_block_hash_id: int
}
BlockStatementDO::getCodeBlockHashId
/**
* @brief gets the code block hash id of this element.
* @return int
*/
- Parameter
self
:BlockStatementDO
- Return
int
pub fn getCodeBlockHashId(self: BlockStatementDO) -> int;
BlockStatementDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*BlockStatementDO
pub fn __all__(db: JavaDB) -> *BlockStatementDO;