AttributeExpression
/**
* @brief An attribute expression.
*/
Inherit from Expression
Primary key: element_oid: int
schema AttributeExpression extends Expression {
@primary element_oid: int,
type: string,
element_index: int,
parent_oid: int,
location_oid: int,
printable_text: string
}
AttributeExpression::getSize
/**
* @brief gets the size information for the element.
* @return NumberOfLines
*/
- Parameter
self
:AttributeExpression
- Return
NumberOfLines
pub fn getSize(self: AttributeExpression) -> NumberOfLines;
AttributeExpression::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:AttributeExpression
- Return
Location
pub fn getLocation(self: AttributeExpression) -> Location;
AttributeExpression::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return CombineElement
*/
- Parameter
self
:AttributeExpression
- Return
*CombineElement
pub fn getAnAncestor(self: AttributeExpression) -> *CombineElement;
AttributeExpression::getParent
/**
* @brief gets the parent of the expression.
* @return CombineElement
*/
- Parameter
self
:AttributeExpression
- Return
CombineElement
pub fn getParent(self: AttributeExpression) -> CombineElement;
AttributeExpression::getLocationOid
/**
* @brief gets the location oid of this element.
* @return int
*/
- Parameter
self
:AttributeExpression
- Return
int
pub fn getLocationOid(self: AttributeExpression) -> int;
AttributeExpression::getType
/**
* @brief gets the type of this element.
* @return string
*/
- Parameter
self
:AttributeExpression
- Return
string
pub fn getType(self: AttributeExpression) -> string;
AttributeExpression::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*AttributeExpression
pub fn __all__(db: PythonDB) -> *AttributeExpression;
AttributeExpression::getPrintableText
/**
* @brief gets the printable text of this element.
* @return string
*/
- Parameter
self
:AttributeExpression
- Return
string
pub fn getPrintableText(self: AttributeExpression) -> string;
AttributeExpression::getEnclosingScope
/**
* @brief gets the immediately enclosing scope (module, function or class) whose body contains this statement.
* @return Scope
*/
- Parameter
self
:AttributeExpression
- Return
Scope
pub fn getEnclosingScope(self: AttributeExpression) -> Scope;
AttributeExpression::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:AttributeExpression
- Return
int
pub fn getParentOid(self: AttributeExpression) -> int;
AttributeExpression::getElementIndex
/**
* @brief gets the element index of this element.
* @return int
*/
- Parameter
self
:AttributeExpression
- Return
int
pub fn getElementIndex(self: AttributeExpression) -> int;