org.jetbrains.jet.lang.psi
Interface JetCallElement

All Superinterfaces:
com.intellij.openapi.util.Iconable, com.intellij.psi.PsiElement, com.intellij.openapi.util.UserDataHolder
All Known Implementing Classes:
JetAnnotationEntry, JetCallExpression, JetDelegatorToSuperCall, JetDelegatorToThisCall

public interface JetCallElement
extends com.intellij.psi.PsiElement


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.intellij.openapi.util.Iconable
com.intellij.openapi.util.Iconable.IconFlags, com.intellij.openapi.util.Iconable.LastComputedIcon
 
Field Summary
 
Fields inherited from interface com.intellij.psi.PsiElement
ARRAY_FACTORY, EMPTY_ARRAY
 
Fields inherited from interface com.intellij.openapi.util.Iconable
ICON_FLAG_CLOSED, ICON_FLAG_OPEN, ICON_FLAG_READ_STATUS, ICON_FLAG_VISIBILITY
 
Method Summary
 JetExpression getCalleeExpression()
           
 java.util.List<JetExpression> getFunctionLiteralArguments()
           
 JetTypeArgumentList getTypeArgumentList()
           
 java.util.List<JetTypeProjection> getTypeArguments()
           
 JetValueArgumentList getValueArgumentList()
           
 java.util.List<? extends ValueArgument> getValueArguments()
           
 
Methods inherited from interface com.intellij.psi.PsiElement
accept, acceptChildren, add, addAfter, addBefore, addRange, addRangeAfter, addRangeBefore, checkAdd, checkDelete, copy, delete, deleteChildRange, findElementAt, findReferenceAt, getChildren, getContainingFile, getContext, getCopyableUserData, getFirstChild, getLanguage, getLastChild, getManager, getNavigationElement, getNextSibling, getNode, getOriginalElement, getParent, getPrevSibling, getProject, getReference, getReferences, getResolveScope, getStartOffsetInParent, getText, getTextLength, getTextOffset, getTextRange, getUseScope, isEquivalentTo, isPhysical, isValid, isWritable, processDeclarations, putCopyableUserData, replace, textContains, textMatches, textMatches, textToCharArray, toString
 
Methods inherited from interface com.intellij.openapi.util.UserDataHolder
getUserData, putUserData
 
Methods inherited from interface com.intellij.openapi.util.Iconable
getIcon
 

Method Detail

getCalleeExpression

@Nullable
JetExpression getCalleeExpression()

getValueArgumentList

@Nullable
JetValueArgumentList getValueArgumentList()

getValueArguments

@NotNull
java.util.List<? extends ValueArgument> getValueArguments()

getFunctionLiteralArguments

@NotNull
java.util.List<JetExpression> getFunctionLiteralArguments()

getTypeArguments

@NotNull
java.util.List<JetTypeProjection> getTypeArguments()

getTypeArgumentList

@Nullable
JetTypeArgumentList getTypeArgumentList()