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
*/
pub fn getText(self: PropertiesComment) -> string;

PropertiesComment::getLocationOid

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

PropertiesComment::__all__

Data constraint method.

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

PropertiesComment::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: PropertiesComment) -> int;

PropertiesComment::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: PropertiesComment) -> Location;