ObjCImplementationDeclarationDO
/**
* @brief DO class: An obj c implementation declaration.
*/
Primary key: oid: int
schema ObjCImplementationDeclarationDO {
@primary oid: int,
is_category: int,
printable_text: string
}
ObjCImplementationDeclarationDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:ObjCImplementationDeclarationDO
- Return
string
pub fn getPrintableText(self: ObjCImplementationDeclarationDO) -> string;
ObjCImplementationDeclarationDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*ObjCImplementationDeclarationDO
pub fn __all__(db: CfamilyDB) -> *ObjCImplementationDeclarationDO;
ObjCImplementationDeclarationDO::getIsCategory
/**
* @brief gets the is category of this element.
* @return int
*/
- Parameter
self
:ObjCImplementationDeclarationDO
- Return
int
pub fn getIsCategory(self: ObjCImplementationDeclarationDO) -> int;