ObjCForCollectionStatementDO

/**
* @brief DO class: Represents Objective-C's collection statement \n
This is represented as 'for (element 'in' collection-expression)' stmt
*/

Primary key: oid: int

schema ObjCForCollectionStatementDO {
  @primary oid: int,
  element_statement_oid: int,
  collection_expression_oid: int,
  body_statement_oid: int,
  printable_text: string
}

ObjCForCollectionStatementDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: ObjCForCollectionStatementDO) -> string;

ObjCForCollectionStatementDO::getBodyStatementOid

/**
* @brief gets the body statement oid of this element.
* @return int
*/
pub fn getBodyStatementOid(self: ObjCForCollectionStatementDO) -> int;

ObjCForCollectionStatementDO::getCollectionExpressionOid

/**
* @brief gets the collection expression oid of this element.
* @return int
*/
pub fn getCollectionExpressionOid(self: ObjCForCollectionStatementDO) -> int;

ObjCForCollectionStatementDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *ObjCForCollectionStatementDO;

ObjCForCollectionStatementDO::getElementStatementOid

/**
* @brief gets the element statement oid of this element.
* @return int
*/
pub fn getElementStatementOid(self: ObjCForCollectionStatementDO) -> int;