NamedDeclarationDO
/**
* @brief DO class: This represents a decl that may have a name
*/
Primary key: oid: int
schema NamedDeclarationDO {
@primary oid: int,
name: string,
printable_text: string
}
NamedDeclarationDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:NamedDeclarationDO
- Return
string
pub fn getPrintableText(self: NamedDeclarationDO) -> string;
NamedDeclarationDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*NamedDeclarationDO
pub fn __all__(db: CfamilyDB) -> *NamedDeclarationDO;
NamedDeclarationDO::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:NamedDeclarationDO
- Return
string
pub fn getName(self: NamedDeclarationDO) -> string;