Uses of Class
com.github.antlrjavaparser.api.stmt.Statement

Packages that use Statement
com.github.antlrjavaparser   
com.github.antlrjavaparser.adapter   
com.github.antlrjavaparser.api.stmt   
 

Uses of Statement in com.github.antlrjavaparser
 

Methods in com.github.antlrjavaparser with parameters of type Statement
static void ASTHelper.addStmt(BlockStmt block, Statement stmt)
          Adds the given statement to the specified block.
 

Uses of Statement in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return Statement
 Statement BlockStatementContextAdapter.adapt(Java7Parser.BlockStatementContext context, AdapterParameters adapterParameters)
           
 Statement ExplicitConstructorInvocationContextAdapter.adapt(Java7Parser.ExplicitConstructorInvocationContext context, AdapterParameters adapterParameters)
           
 Statement LocalVariableDeclarationStatementContextAdapter.adapt(Java7Parser.LocalVariableDeclarationStatementContext context, AdapterParameters adapterParameters)
           
 Statement StatementContextAdapter.adapt(Java7Parser.StatementContext context, AdapterParameters adapterParameters)
           
 Statement TrystatementContextAdapter.adapt(Java7Parser.TrystatementContext context, AdapterParameters adapterParameters)
           
 Statement TryWithResourcesContextAdapter.adapt(Java7Parser.TryWithResourcesContext context, AdapterParameters adapterParameters)
           
 

Uses of Statement in com.github.antlrjavaparser.api.stmt
 

Subclasses of Statement in com.github.antlrjavaparser.api.stmt
 class AssertStmt
           
 class BlockStmt
           
 class BreakStmt
           
 class ContinueStmt
           
 class DoStmt
           
 class EmptyStmt
           
 class ExplicitConstructorInvocationStmt
           
 class ExpressionStmt
           
 class ForeachStmt
           
 class ForStmt
           
 class IfStmt
           
 class LabeledStmt
           
 class ReturnStmt
           
 class SwitchEntryStmt
           
 class SwitchStmt
           
 class SynchronizedStmt
           
 class ThrowStmt
           
 class TryStmt
           
 class TypeDeclarationStmt
           
 class WhileStmt
           
 

Methods in com.github.antlrjavaparser.api.stmt that return Statement
 Statement WhileStmt.getBody()
           
 Statement ForStmt.getBody()
           
 Statement ForeachStmt.getBody()
           
 Statement DoStmt.getBody()
           
 Statement IfStmt.getElseStmt()
           
 Statement LabeledStmt.getStmt()
           
 Statement IfStmt.getThenStmt()
           
 

Methods in com.github.antlrjavaparser.api.stmt that return types with arguments of type Statement
 List<Statement> SwitchEntryStmt.getStmts()
           
 List<Statement> BlockStmt.getStmts()
           
 

Methods in com.github.antlrjavaparser.api.stmt with parameters of type Statement
 void WhileStmt.setBody(Statement body)
           
 void ForStmt.setBody(Statement body)
           
 void ForeachStmt.setBody(Statement body)
           
 void DoStmt.setBody(Statement body)
           
 void IfStmt.setElseStmt(Statement elseStmt)
           
 void LabeledStmt.setStmt(Statement stmt)
           
 void IfStmt.setThenStmt(Statement thenStmt)
           
 

Method parameters in com.github.antlrjavaparser.api.stmt with type arguments of type Statement
 void SwitchEntryStmt.setStmts(List<Statement> stmts)
           
 void BlockStmt.setStmts(List<Statement> stmts)
           
 

Constructors in com.github.antlrjavaparser.api.stmt with parameters of type Statement
DoStmt(int beginLine, int beginColumn, int endLine, int endColumn, Statement body, Expression condition)
           
DoStmt(Statement body, Expression condition)
           
ForeachStmt(int beginLine, int beginColumn, int endLine, int endColumn, VariableDeclarationExpr var, Expression iterable, Statement body)
           
ForeachStmt(VariableDeclarationExpr var, Expression iterable, Statement body)
           
ForStmt(int beginLine, int beginColumn, int endLine, int endColumn, List<Expression> init, Expression compare, List<Expression> update, Statement body)
           
ForStmt(List<Expression> init, Expression compare, List<Expression> update, Statement body)
           
IfStmt(Expression condition, Statement thenStmt, Statement elseStmt)
           
IfStmt(int beginLine, int beginColumn, int endLine, int endColumn, Expression condition, Statement thenStmt, Statement elseStmt)
           
LabeledStmt(int beginLine, int beginColumn, int endLine, int endColumn, String label, Statement stmt)
           
LabeledStmt(String label, Statement stmt)
           
WhileStmt(Expression condition, Statement body)
           
WhileStmt(int beginLine, int beginColumn, int endLine, int endColumn, Expression condition, Statement body)
           
 

Constructor parameters in com.github.antlrjavaparser.api.stmt with type arguments of type Statement
BlockStmt(int beginLine, int beginColumn, int endLine, int endColumn, List<Statement> stmts)
           
BlockStmt(List<Statement> stmts)
           
SwitchEntryStmt(Expression label, List<Statement> stmts)
           
SwitchEntryStmt(int beginLine, int beginColumn, int endLine, int endColumn, Expression label, List<Statement> stmts)
           
 



Copyright © 2013. All Rights Reserved.