Interface FunctionCallTree
-
- All Superinterfaces:
ExpressionTree
,Tree
- All Known Implementing Classes:
FunctionCallTreeImpl
public interface FunctionCallTree extends ExpressionTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SeparatedList<ExpressionTree>
arguments()
Deprecated.since 3.11 .SeparatedList<CallArgumentTree>
callArguments()
ExpressionTree
callee()
SyntaxToken
closeParenthesisToken()
Nullable in case of internal function call with no parenthesisSyntaxToken
openParenthesisToken()
Nullable in case of internal function call with no parenthesis
-
-
-
Method Detail
-
callee
ExpressionTree callee()
-
openParenthesisToken
@Nullable SyntaxToken openParenthesisToken()
Nullable in case of internal function call with no parenthesis
-
arguments
@Deprecated SeparatedList<ExpressionTree> arguments()
Deprecated.since 3.11 . UsecallArguments()
instead.
-
callArguments
SeparatedList<CallArgumentTree> callArguments()
-
closeParenthesisToken
@Nullable SyntaxToken closeParenthesisToken()
Nullable in case of internal function call with no parenthesis
-
-