org.jetbrains.kotlin.psi
Class KtTryExpression

java.lang.Object
  extended by KtExpressionImpl
      extended by org.jetbrains.kotlin.psi.KtTryExpression

public class KtTryExpression
extends KtExpressionImpl


Constructor Summary
KtTryExpression(com.intellij.lang.ASTNode node)
           
 
Method Summary
<R,D> R
accept(KtVisitor<R,D> visitor, D data)
           
 java.util.List<KtCatchClause> getCatchClauses()
           
 KtFinallySection getFinallyBlock()
           
 KtBlockExpression getTryBlock()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

KtTryExpression

public KtTryExpression(@NotNull
                       com.intellij.lang.ASTNode node)
Method Detail

accept

public <R,D> R accept(@NotNull
                      KtVisitor<R,D> visitor,
                      D data)

getTryBlock

@NotNull
public KtBlockExpression getTryBlock()

getCatchClauses

@NotNull
public java.util.List<KtCatchClause> getCatchClauses()

getFinallyBlock

@Nullable
public KtFinallySection getFinallyBlock()