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