JavadocTagDO

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

Primary key: element_hash_id: int

schema JavadocTagDO {
  @primary element_hash_id: int,
  name: string,
  value: string,
  containing_comment_hash_id: int,
  index_order: int,
  location_hash_id: int
}

JavadocTagDO::getLocationHashId

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

JavadocTagDO::__all__

Data constraint method.

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

JavadocTagDO::getValue

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

JavadocTagDO::getContainingCommentHashId

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

JavadocTagDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: JavadocTagDO) -> string;

JavadocTagDO::getIndex

/**
* @brief gets the index order of this element.
* @return int
*/
pub fn getIndex(self: JavadocTagDO) -> int;