TagType
Inherit from Type
Primary key: oid: int
schema TagType extends Type {
@primary oid: int,
kind_name: string,
printable_text: string
}
TagType::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:TagType
- Return
string
pub fn getPrintableText(self: TagType) -> string;
TagType::__all__
Data constraint method.
pub fn __all__(db: CfamilyDB) -> *TagType;
TagType::getKindName
/**
* @brief Type kind name
* @return string
*/
- Parameter
self
:TagType
- Return
string
pub fn getKindName(self: TagType) -> string;
TagType::getTagDeclaration
/**
* @brief gets the tag declaration of this element.
* @return TagDeclaration
*/
- Parameter
self
:TagType
- Return
TagDeclaration
pub fn getTagDeclaration(self: TagType) -> TagDeclaration;