ConstructorInvocation

/** * @brief A constructor invocation statement. */ 

Inherit from Expression

Primary key: element_hash_id: int

schema ConstructorInvocation extends Expression { @primary element_hash_id: int, name: string, parent_hash_id: int, index_order: int, location_hash_id: int, printable_text: string } 

ConstructorInvocation::getType

/** * @brief gets the type of this element. * @return string */ 
pub fn getType(self: ConstructorInvocation) -> string; 

ConstructorInvocation::getIndex

/** * @brief gets the index order of this element. * @return int */ 
pub fn getIndex(self: ConstructorInvocation) -> int; 

ConstructorInvocation::getParentHashId

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

ConstructorInvocation::getEnclosingStatement

/** * @brief gets the statement which encloses the expression. * @return Statement */ 
pub fn getEnclosingStatement(self: ConstructorInvocation) -> Statement; 

ConstructorInvocation::getReference

/** * @brief gets the reference element of the expression * @return ReferenceElement */ 
pub fn getReference(self: ConstructorInvocation) -> ReferenceElement; 

ConstructorInvocation::getAnAncestor

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

ConstructorInvocation::getParent

/** * @brief gets the parent of the expression. * @return ElementParent */ 
pub fn getParent(self: ConstructorInvocation) -> ElementParent; 

ConstructorInvocation::getExpressionList

/** * @brief gets the argument of the expression * @return ExpressionList */ 
pub fn getExpressionList(self: ConstructorInvocation) -> ExpressionList; 

ConstructorInvocation::getLocationHashId

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

ConstructorInvocation::getConstructor

/** * @brief gets the constructor of the expression * @return Constructor */ 
pub fn getConstructor(self: ConstructorInvocation) -> Constructor; 

ConstructorInvocation::getSize

/** * @brief gets the size information for the element. * @return NumberOfLines */ 
pub fn getSize(self: ConstructorInvocation) -> NumberOfLines; 

ConstructorInvocation::getPrintableText

/** * @brief gets a printed representation of this element, including its structure where applicable. * @return string. */ 
pub fn getPrintableText(self: ConstructorInvocation) -> string; 

ConstructorInvocation::getLocation

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

ConstructorInvocation::__all__

Data constraint method.

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

ConstructorInvocation::getEnclosingCallable

/** * @brief gets the callable in which this expression occurs. * @return Callable */ 
pub fn getEnclosingCallable(self: ConstructorInvocation) -> Callable;