Uses of Interface
org.codehaus.janino.Java.BlockStatement
Packages that use Java.BlockStatement
Package
Description
The core of the Janino Java compiler.
Application-independent helper classes.
-
Uses of Java.BlockStatement in org.codehaus.janino
Subinterfaces of Java.BlockStatement in org.codehaus.janinoClasses in org.codehaus.janino that implement Java.BlockStatementModifier and TypeClassDescriptionstatic final class
Representation of a JLS7 8.8.7.1.static final class
Representation of the JLS7 14.10 ASSERT statement.static final class
Representation of a Java "block" (JLS7 14.2).static class
Base class for statements that can be terminated abnormally with abreak
statement.static final class
Representation of the JLS7 14.15 BREAK statement.static class
Abstract bas class forJava.SuperConstructorInvocation
andJava.AlternateConstructorInvocation
.static class
Base class for statements that support the "continue" statement.static final class
Representation of the JLS7 14.16 CONTINUE statement.static final class
Representation of a JLS7 14.13 DO statement.static final class
Representation of the "empty statement", i.e.static final class
Representation of the JLS7 14.8 "expression statement".static final class
This class is derived from "Statement", because it provides for the initialization of the field.static final class
Representation of a JLS7 14.14.2 "enhanced FOR statement".static final class
Representation of a JLS7 14.14.1 "basic FOR statement".static final class
Representation of a JLS7 14.9 IF statement.static final class
Representation of an "instance initializer" (JLS7 8.6) or "static initializer" (JLS7 8.7).static final class
Representation of a JLS7 14.7 "labeled statement".static final class
Representation of the JLS7 14.3 "local class declaration statement".static final class
Representation of a JLS7 14.4 "local variable declaration statement".static final class
Representation of the JLS7 14.17 RETURN statement.static class
Everything that can occur in the body of a method or in a block.static final class
Representation of a JLS7 8.8.7.1.static final class
The JLS7 14.10switch
Statement.static final class
Representation of a JLS7 14.9 SYNCHRONIZED statement.static final class
Representation of a JLS7 14.18 THROW statement.static final class
Representation of a JLS7 14.20 TRY statement.static final class
Representation of the JLS7 14.2 WHILE statement.Fields in org.codehaus.janino declared as Java.BlockStatementModifier and TypeFieldDescriptionfinal Java.BlockStatement
Java.CatchClause.body
Body of the CATCH clause.final Java.BlockStatement
Java.ContinuableStatement.body
The body of this continuable statement.final Java.BlockStatement
Java.SynchronizedStatement.body
The body of this SYNCHRONIZED statement.final Java.BlockStatement
Java.TryStatement.body
The body of the TRY statement.final Java.BlockStatement
Java.IfStatement.elseStatement
The optional ELSE statement, which is executed iff the condition evaluates to FALSE.final Java.BlockStatement
Java.ForStatement.init
The optional "init" part of the "basic FOR statement".final Java.BlockStatement
Java.IfStatement.thenStatement
The "then statement", which is executed iff the condition evaluates to TRUE.Fields in org.codehaus.janino with type parameters of type Java.BlockStatementModifier and TypeFieldDescriptionfinal List
<Java.BlockStatement> Java.SwitchStatement.SwitchBlockStatementGroup.blockStatements
The statements following the CASE labels.final List
<Java.BlockStatement> Java.Block.statements
The list of statements that comprise the body of the block.final List
<? extends Java.BlockStatement> Java.FunctionDeclarator.statements
The statements that comprise the function;null
for abstract method declarations.Methods in org.codehaus.janino that return Java.BlockStatementModifier and TypeMethodDescriptionJava.Block.getStatements()
Parser.parseBlockStatement()
BlockStatement := Statement | (1) 'class' ...Methods in org.codehaus.janino that return types with arguments of type Java.BlockStatementModifier and TypeMethodDescriptionParser.parseBlockStatements()
BlockStatements := { BlockStatement }Methods in org.codehaus.janino with parameters of type Java.BlockStatementModifier and TypeMethodDescriptionvoid
Java.Block.addStatement
(Java.BlockStatement statement) Adds one statement to the end of the block.private Map
<String, Java.LocalVariable> UnitCompiler.buildLocalVariableMap
(Java.BlockStatement blockStatement, Map<String, Java.LocalVariable> localVars) Computes and fills in the 'local variable map' for the given blockStatement.private boolean
UnitCompiler.compile
(Java.BlockStatement bs) private boolean
UnitCompiler.compileTryCatchFinally
(Java.TryStatement ts, UnitCompiler.Compilable2 compileBody, Java.BlockStatement finallY) Generates code for a TRY statement without resources, but with an (optional) FINALLY clause.private boolean
UnitCompiler.compileUnconditionalLoop
(Java.ContinuableStatement cs, Java.BlockStatement body, Java.Rvalue[] update) private boolean
UnitCompiler.compileUnconditionalLoopWithUpdate
(Java.ContinuableStatement cs, Java.BlockStatement body, Java.Rvalue[] update) (package private) void
ScriptEvaluator.cook
(String fileName, Java.AbstractCompilationUnit.ImportDeclaration[] importDeclarations, Java.BlockStatement[][] statementss, Java.MethodDeclarator[][] localMethodss) private boolean
UnitCompiler.fakeCompile
(Java.BlockStatement bs) Called to check whether the givenJava.BlockStatement
compiles or not.private boolean
UnitCompiler.generatesCode
(Java.BlockStatement bs) Checks whether invocation ofUnitCompiler.compile(BlockStatement)
would generate more than zero code bytes.private boolean
UnitCompiler.generatesCode2
(Java.BlockStatement bs) private void
UnitCompiler.leave
(Java.BlockStatement bs) Cleans up the statement context.private void
UnitCompiler.leave2
(Java.BlockStatement bs) private Java.MethodDeclarator
ScriptEvaluator.makeMethodDeclaration
(Location location, Java.Annotation[] annotations, boolean staticMethod, Class<?> returnType, String methodName, Class<?>[] parameterTypes, String[] parameterNames, Class<?>[] thrownExceptions, Java.BlockStatement[] statements) void
Unparser.unparseBlockStatement
(Java.BlockStatement bs) Method parameters in org.codehaus.janino with type arguments of type Java.BlockStatementModifier and TypeMethodDescriptionvoid
Java.Block.addStatements
(List<? extends Java.BlockStatement> statements) Adds a list of statements to the end of the block.private boolean
UnitCompiler.compileStatements
(List<? extends Java.BlockStatement> statements) private boolean
UnitCompiler.generatesCode2
(List<Java.BlockStatement> l) protected void
ScriptEvaluator.makeStatements
(int idx, Parser parser, List<Java.BlockStatement> resultStatements, List<Java.MethodDeclarator> resultMethods) Parses statements from the parser until end-of-input.private void
UnitCompiler.maybeCreateInitMethod
(Java.TypeDeclaration td, ClassFile cf, List<Java.BlockStatement> statements) Creates class/interface initialization method iff there is any initialization code.private static void
ScriptEvaluator.parseScriptStatement
(Parser parser, List<Java.BlockStatement> mainStatements, List<Java.MethodDeclarator> localMethods) ScriptStatement := Statement (1) | 'class' ...void
Unparser.unparseStatements
(List<? extends Java.BlockStatement> statements) Generates Java code from a sequence ofJava.BlockStatement
s.Constructors in org.codehaus.janino with parameters of type Java.BlockStatementModifierConstructorDescriptionCatchClause
(Location location, Java.CatchParameter catchParameter, Java.BlockStatement body) protected
ContinuableStatement
(Location location, Java.BlockStatement body) DoStatement
(Location location, Java.BlockStatement body, Java.Rvalue condition) ForEachStatement
(Location location, Java.FunctionDeclarator.FormalParameter currentElement, Java.Rvalue expression, Java.BlockStatement body) ForStatement
(Location location, Java.BlockStatement init, Java.Rvalue condition, Java.Rvalue[] update, Java.BlockStatement body) IfStatement
(Location location, Java.Rvalue condition, Java.BlockStatement thenStatement) IfStatement
(Location location, Java.Rvalue condition, Java.BlockStatement thenStatement, Java.BlockStatement elseStatement) SynchronizedStatement
(Location location, Java.Rvalue expression, Java.BlockStatement body) TryStatement
(Location location, List<Java.TryStatement.Resource> resources, Java.BlockStatement body, List<Java.CatchClause> catchClauses) A TRY statement without a FINALLY clause.TryStatement
(Location location, List<Java.TryStatement.Resource> resources, Java.BlockStatement body, List<Java.CatchClause> catchClauses, Java.Block finallY) TryStatement
(Location location, Java.BlockStatement body, List<Java.CatchClause> catchClauses) A TRY statement with no resources and no FINALLY clause.WhileStatement
(Location location, Java.Rvalue condition, Java.BlockStatement body) Constructor parameters in org.codehaus.janino with type arguments of type Java.BlockStatementModifierConstructorDescriptionConstructorDeclarator
(Location location, String docComment, Java.Modifier[] modifiers, Java.FunctionDeclarator.FormalParameters formalParameters, Java.Type[] thrownExceptions, Java.ConstructorInvocation constructorInvocation, List<? extends Java.BlockStatement> statements) FunctionDeclarator
(Location location, String docComment, Java.Modifier[] modifiers, Java.Type type, String name, Java.FunctionDeclarator.FormalParameters formalParameters, Java.Type[] thrownExceptions, List<? extends Java.BlockStatement> statements) MethodDeclarator
(Location location, String docComment, Java.Modifier[] modifiers, Java.TypeParameter[] typeParameters, Java.Type type, String name, Java.FunctionDeclarator.FormalParameters formalParameters, Java.Type[] thrownExceptions, Java.ElementValue defaultValue, List<? extends Java.BlockStatement> statements) -
Uses of Java.BlockStatement in org.codehaus.janino.util
Fields in org.codehaus.janino.util with type parameters of type Java.BlockStatementModifier and TypeFieldDescriptionprivate final Visitor.BlockStatementVisitor
<Java.BlockStatement, CompileException> DeepCopier.blockStatementCopier
Methods in org.codehaus.janino.util that return Java.BlockStatementModifier and TypeMethodDescriptionDeepCopier.copyAssertStatement
(Java.AssertStatement subject) DeepCopier.copyBlockStatement
(Java.BlockStatement subject) DeepCopier.copyBreakStatement
(Java.BreakStatement subject) DeepCopier.copyContinueStatement
(Java.ContinueStatement subject) DeepCopier.copyDoStatement
(Java.DoStatement subject) DeepCopier.copyEmptyStatement
(Java.EmptyStatement subject) DeepCopier.copyExpressionStatement
(Java.ExpressionStatement es) DeepCopier.copyForEachStatement
(Java.ForEachStatement fes) DeepCopier.copyForStatement
(Java.ForStatement fs) DeepCopier.copyIfStatement
(Java.IfStatement is) DeepCopier.copyLabeledStatement
(Java.LabeledStatement ls) DeepCopier.copyLocalClassDeclarationStatement
(Java.LocalClassDeclarationStatement subject) DeepCopier.copyLocalVariableDeclarationStatement
(Java.LocalVariableDeclarationStatement subject) DeepCopier.copyOptionalBlockStatement
(Java.BlockStatement subject) DeepCopier.copyReturnStatement
(Java.ReturnStatement subject) DeepCopier.copySwitchStatement
(Java.SwitchStatement subject) DeepCopier.copySynchronizedStatement
(Java.SynchronizedStatement subject) DeepCopier.copyThrowStatement
(Java.ThrowStatement subject) DeepCopier.copyTryStatement
(Java.TryStatement ts) DeepCopier.copyWhileStatement
(Java.WhileStatement ws) Methods in org.codehaus.janino.util that return types with arguments of type Java.BlockStatementModifier and TypeMethodDescriptionDeepCopier.copyBlockStatements
(Collection<? extends Java.BlockStatement> subject) DeepCopier.copyOptionalStatements
(Collection<? extends Java.BlockStatement> subject) DeepCopier.copyStatements
(Collection<? extends Java.BlockStatement> subject) Methods in org.codehaus.janino.util with parameters of type Java.BlockStatementModifier and TypeMethodDescriptionDeepCopier.copyBlockStatement
(Java.BlockStatement subject) DeepCopier.copyOptionalBlockStatement
(Java.BlockStatement subject) void
AbstractTraverser.visitBlockStatement
(Java.BlockStatement bs) void
Traverser.visitBlockStatement
(Java.BlockStatement bs) Method parameters in org.codehaus.janino.util with type arguments of type Java.BlockStatementModifier and TypeMethodDescriptionDeepCopier.copyBlockStatements
(Collection<? extends Java.BlockStatement> subject) DeepCopier.copyOptionalStatements
(Collection<? extends Java.BlockStatement> subject) DeepCopier.copyStatements
(Collection<? extends Java.BlockStatement> subject)