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