Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.ide.model.java.source.tree
Interface InvokeExpressionT  view InvokeExpressionT download InvokeExpressionT.java

All Superinterfaces:
DereferenceExpressionT, ExpressionT, OperatorExpressionT, Tree
All Known Subinterfaces:
MethodCallExpressionT, NewClassExpressionT

public interface InvokeExpressionT
extends DereferenceExpressionT

Common supertype for an expression that invokes a method.


Nested Class Summary
 
Nested classes inherited from class javax.ide.model.java.source.tree.ExpressionT
ExpressionT.ExpressionKind
 
Field Summary
 
Fields inherited from interface javax.ide.model.java.source.tree.ExpressionT
EMPTY_ARRAY
 
Method Summary
 ExpressionT getArgumentAt(int i)
          Equivalent to calling getArgumentList().getOperandAt( i ).
 int getArgumentCount()
          Equivalent to calling getArgumentList().getOperandCount().
 ListExpressionT getArgumentList()
           
 
Methods inherited from interface javax.ide.model.java.source.tree.DereferenceExpressionT
getLhsOperand, setLhsOperand
 
Methods inherited from interface javax.ide.model.java.source.tree.ExpressionT
getExpressionKind, getFirstOperand, getOperandAt, getOperandCount, getOperands, getSecondOperand, getThirdOperand
 
Methods inherited from interface javax.ide.model.java.source.tree.Tree
accept, accept, addSelf, addSelf, addSelfAfter, addSelfBefore, clearProperty, cloneSelf, getChildren, getOwningFile, getParent, getPosition, getProperty, getSiblingAfter, getSiblingBefore, getSiblings, getTreeKind, isSynthetic, removeSelf, replaceSelf, setProperty
 

Method Detail

getArgumentList

public ListExpressionT getArgumentList()

getArgumentCount

public int getArgumentCount()
Equivalent to calling getArgumentList().getOperandCount().


getArgumentAt

public ExpressionT getArgumentAt(int i)
Equivalent to calling getArgumentList().getOperandAt( i ).