SynchronizedStatementDO

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

Primary key: element_hash_id: int

schema SynchronizedStatementDO { @primary element_hash_id: int, lock_expression_hash_id: int, body_declaration_hash_id: int } 

SynchronizedStatementDO::getBodyDeclarationHashId

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

SynchronizedStatementDO::__all__

Data constraint method.

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

SynchronizedStatementDO::getLockExpressionHashId

/** * @brief gets the lock expression hash id of this element. * @return int */ 
pub fn getLockExpressionHashId(self: SynchronizedStatementDO) -> int;