Uses of Class
org.codehaus.janino.Java.TryStatement.Resource
-
Packages that use Java.TryStatement.Resource Package Description org.codehaus.janino The core of the Janino Java compiler.org.codehaus.janino.util Application-independent helper classes. -
-
Uses of Java.TryStatement.Resource in org.codehaus.janino
Subclasses of Java.TryStatement.Resource in org.codehaus.janino Modifier and Type Class Description static class
Java.TryStatement.LocalVariableDeclaratorResource
Representation of a JLS9 14.20.2 "local-variable-declarator resource" in a TRY-with-resources statement.static class
Java.TryStatement.VariableAccessResource
Representation of a JLS9 14.20.2 "variable-access resource" in a TRY-with-resources statement.Fields in org.codehaus.janino with type parameters of type Java.TryStatement.Resource Modifier and Type Field Description java.util.List<Java.TryStatement.Resource>
Java.TryStatement. resources
The "resources" managed by the TRY-with-resources statement.Methods in org.codehaus.janino that return Java.TryStatement.Resource Modifier and Type Method Description private Java.TryStatement.Resource
Parser. parseResource()
Resource := Modifiers Type VariableDeclarator | VariableAccessMethods in org.codehaus.janino with parameters of type Java.TryStatement.Resource Modifier and Type Method Description private void
Unparser. unparseResource(Java.TryStatement.Resource r)
private void
Unparser. unparseResources(Java.TryStatement.Resource[] resources)
Method parameters in org.codehaus.janino with type arguments of type Java.TryStatement.Resource Modifier and Type Method Description private boolean
UnitCompiler. compileTryCatchFinallyWithResources(Java.TryStatement ts, java.util.List<Java.TryStatement.Resource> resources, UnitCompiler.Compilable2 compileBody, Java.Block finallY)
Generates code for a TRY statement with (possibly zero) resources and an (optional) FINALLY clause.Constructor parameters in org.codehaus.janino with type arguments of type Java.TryStatement.Resource Constructor Description TryStatement(Location location, java.util.List<Java.TryStatement.Resource> resources, Java.BlockStatement body, java.util.List<Java.CatchClause> catchClauses)
A TRY statement without a FINALLY clause.TryStatement(Location location, java.util.List<Java.TryStatement.Resource> resources, Java.BlockStatement body, java.util.List<Java.CatchClause> catchClauses, Java.Block finallY)
-
Uses of Java.TryStatement.Resource in org.codehaus.janino.util
Fields in org.codehaus.janino.util with type parameters of type Java.TryStatement.Resource Modifier and Type Field Description private Visitor.TryStatementResourceVisitor<Java.TryStatement.Resource,CompileException>
DeepCopier. resourceCopier
Methods in org.codehaus.janino.util that return Java.TryStatement.Resource Modifier and Type Method Description Java.TryStatement.Resource
DeepCopier. copyLocalVariableDeclaratorResource(Java.TryStatement.LocalVariableDeclaratorResource subject)
Java.TryStatement.Resource
DeepCopier. copyResource(Java.TryStatement.Resource subject)
Java.TryStatement.Resource
DeepCopier. copyVariableAccessResource(Java.TryStatement.VariableAccessResource subject)
Methods in org.codehaus.janino.util that return types with arguments of type Java.TryStatement.Resource Modifier and Type Method Description java.util.List<Java.TryStatement.Resource>
DeepCopier. copyResources(java.util.Collection<? extends Java.TryStatement.Resource> subject)
Methods in org.codehaus.janino.util with parameters of type Java.TryStatement.Resource Modifier and Type Method Description Java.TryStatement.Resource
DeepCopier. copyResource(Java.TryStatement.Resource subject)
Method parameters in org.codehaus.janino.util with type arguments of type Java.TryStatement.Resource Modifier and Type Method Description java.util.List<Java.TryStatement.Resource>
DeepCopier. copyResources(java.util.Collection<? extends Java.TryStatement.Resource> subject)
-