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