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