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
*/
pub fn getParentOid(self: PropertiesCommentDO) -> int;

PropertiesCommentDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: PropertiesCommentDO) -> int;

PropertiesCommentDO::__all__

Data constraint method.

pub fn __all__(db: PropertiesDB) -> *PropertiesCommentDO;

PropertiesCommentDO::getText

/**
* @brief gets the text of this element.
* @return string
*/
pub fn getText(self: PropertiesCommentDO) -> string;