PropertiesCommentDO
/**
* @brief DO class: A comment.
*/
Primary key: element_oid: int
schema PropertiesCommentDO {
@primary element_oid: int,
text: string,
parent_oid: int,
location_oid: int
}
PropertiesCommentDO::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:PropertiesCommentDO
- Return
int
pub fn getParentOid(self: PropertiesCommentDO) -> int;
PropertiesCommentDO::getLocationOid
/**
* @brief gets the location oid of this element.
* @return int
*/
- Parameter
self
:PropertiesCommentDO
- Return
int
pub fn getLocationOid(self: PropertiesCommentDO) -> int;
PropertiesCommentDO::__all__
Data constraint method.
- Parameter
db
:PropertiesDB
- Return
*PropertiesCommentDO
pub fn __all__(db: PropertiesDB) -> *PropertiesCommentDO;
PropertiesCommentDO::getText
/**
* @brief gets the text of this element.
* @return string
*/
- Parameter
self
:PropertiesCommentDO
- Return
string
pub fn getText(self: PropertiesCommentDO) -> string;