SuperAccessExpression
/** * @brief A super access expression. */
Inherit from Expression
Primary key: element_hash_id: int
schema SuperAccessExpression extends Expression { @primary element_hash_id: int, name: string, parent_hash_id: int, index_order: int, location_hash_id: int, printable_text: string }
SuperAccessExpression::getParentHashId
/** * @brief gets the parent hash id of this element. * @return int */
- Parameter
self
:SuperAccessExpression
- Return
int
pub fn getParentHashId(self: SuperAccessExpression) -> int;
SuperAccessExpression::getEnclosingStatement
/** * @brief gets the statement which encloses the expression. * @return Statement */
- Parameter
self
:SuperAccessExpression
- Return
Statement
pub fn getEnclosingStatement(self: SuperAccessExpression) -> Statement;
SuperAccessExpression::getType
/** * @brief gets the type of this element. * @return string */
- Parameter
self
:SuperAccessExpression
- Return
string
pub fn getType(self: SuperAccessExpression) -> string;
SuperAccessExpression::getIndex
/** * @brief gets the index order of this element. * @return int */
- Parameter
self
:SuperAccessExpression
- Return
int
pub fn getIndex(self: SuperAccessExpression) -> int;
SuperAccessExpression::getAnAncestor
/** * @brief gets an ancestor of the element. * @return ElementParent */
- Parameter
self
:SuperAccessExpression
- Return
*ElementParent
pub fn getAnAncestor(self: SuperAccessExpression) -> *ElementParent;
SuperAccessExpression::getMethod
- Parameter
self
:SuperAccessExpression
- Return
Method
pub fn getMethod(self: SuperAccessExpression) -> Method;
SuperAccessExpression::getParent
/** * @brief gets the parent of the expression. * @return ElementParent */
- Parameter
self
:SuperAccessExpression
- Return
ElementParent
pub fn getParent(self: SuperAccessExpression) -> ElementParent;
SuperAccessExpression::getLocationHashId
/** * @brief gets the location hash id of this element. * @return int */
- Parameter
self
:SuperAccessExpression
- Return
int
pub fn getLocationHashId(self: SuperAccessExpression) -> int;
SuperAccessExpression::getSize
/** * @brief gets the size information for the element. * @return NumberOfLines */
- Parameter
self
:SuperAccessExpression
- Return
NumberOfLines
pub fn getSize(self: SuperAccessExpression) -> NumberOfLines;
SuperAccessExpression::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*SuperAccessExpression
pub fn __all__(db: JavaDB) -> *SuperAccessExpression;
SuperAccessExpression::getLocation
/** * @brief gets the location for the element. * @return Location */
- Parameter
self
:SuperAccessExpression
- Return
Location
pub fn getLocation(self: SuperAccessExpression) -> Location;
SuperAccessExpression::getEnclosingCallable
/** * @brief gets the callable in which this expression occurs. * @return Callable */
- Parameter
self
:SuperAccessExpression
- Return
Callable
pub fn getEnclosingCallable(self: SuperAccessExpression) -> Callable;
SuperAccessExpression::getPrintableText
/** * @brief gets a printed representation of this element, including its structure where applicable. * @return string. */
- Parameter
self
:SuperAccessExpression
- Return
string
pub fn getPrintableText(self: SuperAccessExpression) -> string;