ImportStaticReferenceElement
/** * @brief Represents a reference to the member imported by a Java import static statement. */
Inherit from ImportStaticReferenceElementDO
Primary key: element_hash_id: int
schema ImportStaticReferenceElement extends ImportStaticReferenceElementDO { @primary element_hash_id: int, printable_text: string, parent_hash_id: int, location_hash_id: int }
ImportStaticReferenceElement::getPrintableText
/** * @brief gets a printed representation of this element, including its structure where applicable. * @return string. */
- Parameter
self
:ImportStaticReferenceElement
- Return
string
pub fn getPrintableText(self: ImportStaticReferenceElement) -> string;
ImportStaticReferenceElement::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ImportStaticReferenceElement
pub fn __all__(db: JavaDB) -> *ImportStaticReferenceElement;
ImportStaticReferenceElement::getLocation
/** * @brief gets the location for the element. * @return Location */
- Parameter
self
:ImportStaticReferenceElement
- Return
Location
pub fn getLocation(self: ImportStaticReferenceElement) -> Location;
ImportStaticReferenceElement::getAnAncestor
/** * @brief gets an ancestor of the element. * @return ElementParent */
- Parameter
self
:ImportStaticReferenceElement
- Return
*ElementParent
pub fn getAnAncestor(self: ImportStaticReferenceElement) -> *ElementParent;
ImportStaticReferenceElement::getLocationHashId
/** * @brief gets the location hash id of this element. * @return int */
- Parameter
self
:ImportStaticReferenceElement
- Return
int
pub fn getLocationHashId(self: ImportStaticReferenceElement) -> int;
ImportStaticReferenceElement::getParent
/** * @brief gets the parent of the element. * @return ImportStaticStatement */
- Parameter
self
:ImportStaticReferenceElement
- Return
ImportStaticStatement
pub fn getParent(self: ImportStaticReferenceElement) -> ImportStaticStatement;
ImportStaticReferenceElement::getParentHashId
/** * @brief gets the parent hash id of this element. * @return int */
- Parameter
self
:ImportStaticReferenceElement
- Return
int
pub fn getParentHashId(self: ImportStaticReferenceElement) -> int;