JavadocCommentDO

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

Primary key: element_hash_id: int

schema JavadocCommentDO { @primary element_hash_id: int, documentable_hash_id: int, text: string, location_hash_id: int, parent_hash_id: int } 

JavadocCommentDO::getParentHashId

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

JavadocCommentDO::getText

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

JavadocCommentDO::getLocationHashId

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

JavadocCommentDO::__all__

Data constraint method.

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

JavadocCommentDO::getDocumentableHashId

/** * @brief gets the documentable hash id of this element. * @return int */ 
pub fn getDocumentableHashId(self: JavadocCommentDO) -> int;