CallableEnclosingStatementDO

/**
* @brief DO class: Describe a statement enclosed by a certain callable.
*/

Primary key: statement_hash_id: int

schema CallableEnclosingStatementDO {
  @primary statement_hash_id: int,
  callable_hash_id: int
}

CallableEnclosingStatementDO::getCallableHashId

/**
* @brief gets the callable hash id of this element.
* @return int
*/
pub fn getCallableHashId(self: CallableEnclosingStatementDO) -> int;

CallableEnclosingStatementDO::__all__

Data constraint method.

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