ObjCCategoryDeclarationDO

/**
* @brief DO class: Represents a category declaration
*/

Primary key: oid: int

schema ObjCCategoryDeclarationDO {
  @primary oid: int,
  interface_oid: int,
  is_extension: int,
  display_name: string,
  printable_text: string
}

ObjCCategoryDeclarationDO::getPrintableText

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

ObjCCategoryDeclarationDO::getDisplayName

/**
* @brief gets the display name of this element.
* @return string
*/
pub fn getDisplayName(self: ObjCCategoryDeclarationDO) -> string;

ObjCCategoryDeclarationDO::getIsExtension

/**
* @brief gets the is extension of this element.
* @return int
*/
pub fn getIsExtension(self: ObjCCategoryDeclarationDO) -> int;

ObjCCategoryDeclarationDO::__all__

Data constraint method.

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

ObjCCategoryDeclarationDO::getInterfaceOid

/**
* @brief gets the interface oid of this element.
* @return int
*/
pub fn getInterfaceOid(self: ObjCCategoryDeclarationDO) -> int;