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.
*/
pub fn getPrintableText(self: ImportStaticReferenceElement) -> string;

ImportStaticReferenceElement::__all__

Data constraint method.

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

ImportStaticReferenceElement::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: ImportStaticReferenceElement) -> Location;

ImportStaticReferenceElement::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return ElementParent 
*/
pub fn getAnAncestor(self: ImportStaticReferenceElement) -> *ElementParent;

ImportStaticReferenceElement::getLocationHashId

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

ImportStaticReferenceElement::getParent

/**
* @brief gets the parent of the element.
* @return ImportStaticStatement 
*/
pub fn getParent(self: ImportStaticReferenceElement) -> ImportStaticStatement;

ImportStaticReferenceElement::getParentHashId

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