DocstringCommentDO
/**
* @brief DO class: A docstring comment.
*/
Primary key: element_oid: int
schema DocstringCommentDO {
@primary element_oid: int,
text: string,
documented_element_oid: int
}
DocstringCommentDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*DocstringCommentDO
pub fn __all__(db: PythonDB) -> *DocstringCommentDO;
DocstringCommentDO::getDocumentedElementOid
/**
* @brief gets the documented element oid of this element.
* @return int
*/
- Parameter
self
:DocstringCommentDO
- Return
int
pub fn getDocumentedElementOid(self: DocstringCommentDO) -> int;
DocstringCommentDO::getText
/**
* @brief gets the text of this element.
* @return string
*/
- Parameter
self
:DocstringCommentDO
- Return
string
pub fn getText(self: DocstringCommentDO) -> string;