JavadocTagValueDO

/**
* @brief DO class: A javadoc tag value element.
*/

Primary key: element_hash_id: int

schema JavadocTagValueDO {
  @primary element_hash_id: int,
  value: string,
  parent_hash_id: int,
  location_hash_id: int
}

JavadocTagValueDO::getParentHashId

/**
* @brief gets the containing comment hash id of this element.
* @return int
*/
pub fn getParentHashId(self: JavadocTagValueDO) -> int;

JavadocTagValueDO::getLocationHashId

/**
* @brief gets the location hash id of this element.
* @return int
*/
pub fn getLocationHashId(self: JavadocTagValueDO) -> int;

JavadocTagValueDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *JavadocTagValueDO;

JavadocTagValueDO::getValue

/**
* @brief gets the value of this element.
* @return string
*/
pub fn getValue(self: JavadocTagValueDO) -> string;