StatementEnclosingExpressionDO

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

Primary key: expression_hash_id: int

schema StatementEnclosingExpressionDO {
  @primary expression_hash_id: int,
  statement_hash_id: int
}

StatementEnclosingExpressionDO::getStatementHashId

/**
* @brief gets the statement hash id of this element.
* @return int
*/
pub fn getStatementHashId(self: StatementEnclosingExpressionDO) -> int;

StatementEnclosingExpressionDO::__all__

Data constraint method.

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