DecoratorDO
/**
* @brief DO class: A decorator.
*/
Primary key: element_oid: int
schema DecoratorDO {
@primary element_oid: int,
type: string,
printable_text: string
}
DecoratorDO::getPrintableText
/**
* @brief gets the printable text of this element.
* @return string
*/
- Parameter
self
:DecoratorDO
- Return
string
pub fn getPrintableText(self: DecoratorDO) -> string;
DecoratorDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*DecoratorDO
pub fn __all__(db: PythonDB) -> *DecoratorDO;
DecoratorDO::getType
/**
* @brief gets the type of this element.
* @return string
*/
- Parameter
self
:DecoratorDO
- Return
string
pub fn getType(self: DecoratorDO) -> string;