jltools.ast
Interface Synchronized

All Superinterfaces:
java.lang.Cloneable, Copy, Node, java.io.Serializable, Stmt
All Known Implementing Classes:
Synchronized_c

public interface Synchronized
extends Stmt

An immutable representation of a Java language synchronized block. Contains an expression being tested and a statement to be executed while the expression is true.


Method Summary
 Block body()
           
 Synchronized body(Block body)
           
 Expr expr()
           
 Synchronized expr(Expr expr)
           
 
Methods inherited from interface jltools.ast.Node
buildTypes_, buildTypesOverride_, copy, disambiguate_, disambiguateOverride_, disambiguateTypes_, disambiguateTypesOverride_, dump, enterScope, exceptionCheck_, exceptionCheckOverride_, ext, ext, foldConstants_, foldConstantsOverride_, leaveScope, position, position, reconstructTypes_, translate_, typeCheck_, typeCheckOverride_, visit, visitChildren
 

Method Detail

expr

public Expr expr()

expr

public Synchronized expr(Expr expr)

body

public Block body()

body

public Synchronized body(Block body)