Package org.codehaus.janino
Class Java.TryStatement.LocalVariableDeclaratorResource
- java.lang.Object
-
- org.codehaus.janino.Java.Located
-
- org.codehaus.janino.Java.TryStatement.Resource
-
- org.codehaus.janino.Java.TryStatement.LocalVariableDeclaratorResource
-
- All Implemented Interfaces:
Java.Locatable
- Enclosing class:
- Java.TryStatement
public static class Java.TryStatement.LocalVariableDeclaratorResource extends Java.TryStatement.Resource
Representation of a JLS9 14.20.2 "local-variable-declarator resource" in a TRY-with-resources statement.
-
-
Field Summary
Fields Modifier and Type Field Description Java.Modifier[]modifiersThe resource variable modifiers (annotations and/or flags like FINAL).Java.TypetypeThe declared type of the resource variable.Java.VariableDeclaratorvariableDeclaratorThe "variable declarator" that follows the type.-
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
-
-
Constructor Summary
Constructors Constructor Description LocalVariableDeclaratorResource(Location location, Java.Modifier[] modifiers, Java.Type type, Java.VariableDeclarator variableDeclarator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,EX extends Throwable>
Raccept(Visitor.TryStatementResourceVisitor<R,EX> visitor)Invokes the "visit...()" method ofVisitor.TryStatementResourceVisitorfor the concreteJava.TryStatement.Resourcetype.voidsetEnclosingTryStatement(Java.TryStatement ts)Sets the enclosing scope for this object and all subordinateJava.TryStatement.Resourceobjects.StringtoString()-
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
-
-
-
-
Field Detail
-
modifiers
public final Java.Modifier[] modifiers
The resource variable modifiers (annotations and/or flags like FINAL).
-
type
public final Java.Type type
The declared type of the resource variable.
-
variableDeclarator
public final Java.VariableDeclarator variableDeclarator
The "variable declarator" that follows the type.
-
-
Constructor Detail
-
LocalVariableDeclaratorResource
public LocalVariableDeclaratorResource(Location location, Java.Modifier[] modifiers, Java.Type type, Java.VariableDeclarator variableDeclarator)
- Parameters:
modifiers- Onlyfinalallowed
-
-
Method Detail
-
setEnclosingTryStatement
public void setEnclosingTryStatement(Java.TryStatement ts)
Description copied from class:Java.TryStatement.ResourceSets the enclosing scope for this object and all subordinateJava.TryStatement.Resourceobjects.- Specified by:
setEnclosingTryStatementin classJava.TryStatement.Resource
-
accept
@Nullable public <R,EX extends Throwable> R accept(Visitor.TryStatementResourceVisitor<R,EX> visitor) throws EX extends Throwable
Description copied from class:Java.TryStatement.ResourceInvokes the "visit...()" method ofVisitor.TryStatementResourceVisitorfor the concreteJava.TryStatement.Resourcetype.- Specified by:
acceptin classJava.TryStatement.Resource- Throws:
EX extends Throwable
-
-