Uses of Class
org.duelengine.duel.codedom.CodeStatement

Packages that use CodeStatement
org.duelengine.duel.codedom   
 

Uses of CodeStatement in org.duelengine.duel.codedom
 

Subclasses of CodeStatement in org.duelengine.duel.codedom
 class CodeCommentStatement
           
 class CodeConditionStatement
           
 class CodeExpressionStatement
           
 class CodeIterationStatement
          Represents a for loop
 class CodeMethodReturnStatement
           
 class CodeVariableCompoundDeclarationStatement
          Represents a compound variable declaration statement Note: the first var determines the type
 class CodeVariableDeclarationStatement
          Represents a variable declaration
 

Methods in org.duelengine.duel.codedom that return CodeStatement
 CodeStatement CodeExpression.asStatement()
           
 CodeStatement CodeStatementCollection.getFirstStatement()
           
 CodeStatement CodeIterationStatement.getIncrementStatement()
           
 CodeStatement CodeIterationStatement.getInitStatement()
           
 CodeStatement CodeStatementCollection.getLastStatement()
           
 CodeStatement CodeStatement.withUserData(Object... pairs)
           
 

Methods in org.duelengine.duel.codedom that return types with arguments of type CodeStatement
 Iterator<CodeStatement> CodeStatementCollection.iterator()
           
 

Methods in org.duelengine.duel.codedom with parameters of type CodeStatement
 void CodeStatementBlock.add(CodeStatement statement)
           
 boolean CodeStatementCollection.addAll(CodeStatement[] statements)
           
 void CodeIterationStatement.setIncrementStatement(CodeStatement value)
           
 void CodeIterationStatement.setInitStatement(CodeStatement value)
           
 

Constructors in org.duelengine.duel.codedom with parameters of type CodeStatement
CodeConditionStatement(CodeExpression condition, CodeStatement... trueStatements)
           
CodeConditionStatement(CodeExpression condition, CodeStatement[] trueStatements, CodeStatement[] falseStatements)
           
CodeConditionStatement(CodeExpression condition, CodeStatement[] trueStatements, CodeStatement[] falseStatements)
           
CodeConstructor(AccessModifierType access, CodeParameterDeclarationExpression[] parameters, CodeExpression[] baseCtorArgs, CodeExpression[] chainedCtorArgs, CodeStatement[] statements)
           
CodeIterationStatement(CodeStatement initStatement, CodeExpression testExpression, CodeStatement incrementStatement, CodeStatement... statements)
           
CodeIterationStatement(CodeStatement initStatement, CodeExpression testExpression, CodeStatement incrementStatement, CodeStatement... statements)
           
CodeMethod(AccessModifierType access, Class<?> returnType, String methodName, CodeParameterDeclarationExpression[] parameters, CodeStatement... statements)
           
 



Copyright © 2011. All Rights Reserved.