Uses of Class
com.sun.codemodel.JBlock

Uses of JBlock in com.sun.codemodel
 

Fields in com.sun.codemodel declared as JBlock
static JBlock JBlock.dummyInstance
          An instance of JBlock which is not connected to any live code.
 

Methods in com.sun.codemodel that return JBlock
 JBlock JConditional._else()
          Create a block to be executed by "else" branch
 JBlock JTryBlock._finally()
           
 JBlock JConditional._then()
          Return the block to be excuted by the "then" branch
 JBlock JBlock.add(JStatement s)
          Adds a statement to this block
 JBlock JBlock.assign(JAssignmentTarget lhs, JExpression exp)
          Creates an assignment statement and adds it to this block.
 JBlock JBlock.assignPlus(JAssignmentTarget lhs, JExpression exp)
           
 JBlock JBlock.block()
          Create a sub-block and add it to this block
 JBlock JMethod.body()
          Get the block that makes up body of this method
 JBlock JDoLoop.body()
           
 JBlock JTryBlock.body()
           
 JBlock JForLoop.body()
           
 JBlock JWhileLoop.body()
           
 JBlock JCase.body()
           
 JBlock JCatchBlock.body()
           
 JBlock JDefinedClass.init()
          Creates, if necessary, and returns the static initializer for this class.