ObjCPropertyDeclarationDO

/**
* @brief DO class: Represents one property declaration in an Objective-C interface
*/

Primary key: oid: int

schema ObjCPropertyDeclarationDO {
  @primary oid: int,
  type_oid: int,
  obj_c_container_declaration_oid: int,
  property_control: string,
  setter_kind: string,
  printable_text: string
}

ObjCPropertyDeclarationDO::getPrintableText

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

ObjCPropertyDeclarationDO::getTypeOid

/**
* @brief gets the type oid of this element.
* @return int
*/
pub fn getTypeOid(self: ObjCPropertyDeclarationDO) -> int;

ObjCPropertyDeclarationDO::__all__

Data constraint method.

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

ObjCPropertyDeclarationDO::getSetterKind

/**
* @brief Enum: assign, retain, copy, weak
* @return string
*/
pub fn getSetterKind(self: ObjCPropertyDeclarationDO) -> string;

ObjCPropertyDeclarationDO::getObjCContainerDeclarationOid

/**
* @brief gets the obj c container declaration oid of this element.
* @return int
*/
pub fn getObjCContainerDeclarationOid(self: ObjCPropertyDeclarationDO) -> int;

ObjCPropertyDeclarationDO::getPropertyControl

/**
* @brief Enum: none, required, optional
* @return string
*/
pub fn getPropertyControl(self: ObjCPropertyDeclarationDO) -> string;