CallExpression

/** * @brief: callGraph provides classes and predicates for working with Java call relations */ 

Inherit from Expression

Primary key: element_hash_id: int

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

CallExpression::getSize

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

CallExpression::getLocationHashId

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

CallExpression::getParent

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

CallExpression::getParentHashId

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

CallExpression::getEnclosingStatement

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

CallExpression::getReference

pub fn getReference(self: CallExpression) -> ReferenceExpression; 

CallExpression::getAnAncestor

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

CallExpression::getCallSite

pub fn getCallSite(self: CallExpression) -> ReferenceExpression; 

CallExpression::getType

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

CallExpression::getPrintableText

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

CallExpression::getLocation

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

CallExpression::getEnclosingCallable

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

CallExpression::__all__

Data constraint method.

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

CallExpression::getMethodName

pub fn getMethodName(self: CallExpression) -> string; 

CallExpression::getIndex

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

CallExpression::getMethod

pub fn getMethod(self: CallExpression) -> Method; 

CallExpression::getCallSiteDefinition

pub fn getCallSiteDefinition(self: CallExpression) -> ClassOrInterface; 

CallExpression::getLombokField

pub fn getLombokField(self: CallExpression) -> LombokField; 

CallExpression::getArguments

pub fn getArguments(self: CallExpression) -> *Expression;