org.sonar.javascript.model
Interface TryStatementTree

All Superinterfaces:
SourceElementTree, StatementTree, Tree
All Known Implementing Classes:
TreeImpl.TryStatementTreeImpl

public interface TryStatementTree
extends StatementTree

try Statement.

   try block() catchBlock()
   try block() finallyBlock()
   try block() catchBlock() finallyBlock()
 

This interface is not intended to be implemented by clients.


Method Summary
 BlockTree block()
           
 CatchBlockTree catchBlock()
           
 BlockTree finallyBlock()
           
 
Methods inherited from interface org.sonar.javascript.model.Tree
as, getLine, is
 

Method Detail

block

BlockTree block()

catchBlock

@Nullable
CatchBlockTree catchBlock()

finallyBlock

@Nullable
BlockTree finallyBlock()


Copyright © 2011-2014 SonarSource and Eriks Nukis. All Rights Reserved.