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 classJava.TryStatement.LocalVariableDeclaratorResourceRepresentation of a JLS9 14.20.2 "local-variable-declarator resource" in a TRY-with-resources statement.static classJava.TryStatement.VariableAccessResourceRepresentation 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. resourcesThe "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.ResourceParser. parseResource()Resource := Modifiers Type VariableDeclarator | VariableAccessMethods in org.codehaus.janino with parameters of type Java.TryStatement.Resource Modifier and Type Method Description private voidUnparser. unparseResource(Java.TryStatement.Resource r)private voidUnparser. 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 booleanUnitCompiler. 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. resourceCopierMethods in org.codehaus.janino.util that return Java.TryStatement.Resource Modifier and Type Method Description Java.TryStatement.ResourceDeepCopier. copyLocalVariableDeclaratorResource(Java.TryStatement.LocalVariableDeclaratorResource subject)Java.TryStatement.ResourceDeepCopier. copyResource(Java.TryStatement.Resource subject)Java.TryStatement.ResourceDeepCopier. 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.ResourceDeepCopier. 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)
-