ObjCContainerDeclaration
Inherit from NamedDeclaration
Primary key: oid: int
schema ObjCContainerDeclaration extends NamedDeclaration {
@primary oid: int,
parent_oid: int,
index_order: int,
location_oid: int,
kind_name: string,
printable_text: string
}
ObjCContainerDeclaration::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
int
pub fn getParentOid(self: ObjCContainerDeclaration) -> int;
ObjCContainerDeclaration::getIndexOrder
/**
* @brief gets the index order of this element.
* @return int
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
int
pub fn getIndexOrder(self: ObjCContainerDeclaration) -> int;
ObjCContainerDeclaration::getLocationOid
/**
* @brief gets the location oid of this element.
* @return int
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
int
pub fn getLocationOid(self: ObjCContainerDeclaration) -> int;
ObjCContainerDeclaration::getName
/**
* @brief gets the name of the named declaration.
* @return string
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
string
pub fn getName(self: ObjCContainerDeclaration) -> string;
ObjCContainerDeclaration::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
string
pub fn getPrintableText(self: ObjCContainerDeclaration) -> string;
ObjCContainerDeclaration::getParent
/**
* @brief gets the parent element of the declaration
* @return ElementParent
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
ElementParent
pub fn getParent(self: ObjCContainerDeclaration) -> ElementParent;
ObjCContainerDeclaration::getKindName
/**
* @brief Declaration kind name
* @return string
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
string
pub fn getKindName(self: ObjCContainerDeclaration) -> string;
ObjCContainerDeclaration::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*ObjCContainerDeclaration
pub fn __all__(db: CfamilyDB) -> *ObjCContainerDeclaration;
ObjCContainerDeclaration::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
*ElementParent
pub fn getAnAncestor(self: ObjCContainerDeclaration) -> *ElementParent;
ObjCContainerDeclaration::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:ObjCContainerDeclaration
- Return
Location
pub fn getLocation(self: ObjCContainerDeclaration) -> Location;