ModifierListDO
/**
* @brief DO class: A list of modifiers and annotations on a java element (class, method, field and so on).
*/
Primary key: element_hash_id: int
schema ModifierListDO {
@primary element_hash_id: int,
parent_hash_id: int,
location_hash_id: int
}
ModifierListDO::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:ModifierListDO
- Return
int
pub fn getLocationHashId(self: ModifierListDO) -> int;
ModifierListDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ModifierListDO
pub fn __all__(db: JavaDB) -> *ModifierListDO;
ModifierListDO::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:ModifierListDO
- Return
int
pub fn getParentHashId(self: ModifierListDO) -> int;