Uses of Class
com.sun.codemodel.JBlock
-
Packages that use JBlock Package Description com.sun.codemodel Library for generating Java source code -
-
Uses of JBlock in com.sun.codemodel
Fields in com.sun.codemodel declared as JBlock Modifier and Type Field Description private JBlock
JConditional. _else
JBlock of statements for optional "else" clauseprivate JBlock
JTryBlock. _finally
private JBlock
JConditional. _then
JBlock of statements for "then" clauseprivate JBlock
JCase. body
JBlock of statements which makes up body of this While statementprivate JBlock
JCatchBlock. body
private JBlock
JDoLoop. body
JBlock of statements which makes up body of this Do statementprivate JBlock
JForEach. body
private JBlock
JForLoop. body
private JBlock
JMethod. body
JBlock of statements that makes up the body this methodprivate JBlock
JTryBlock. body
private JBlock
JWhileLoop. body
JBlock of statements which makes up body of this While statementprivate JBlock
JDefinedClass. init
Static initializer, if this class has oneMethods in com.sun.codemodel that return JBlock Modifier and Type Method Description JBlock
JConditional. _else()
Create a block to be executed by "else" branchJBlock
JTryBlock. _finally()
JBlock
JConditional. _then()
Return the block to be excuted by the "then" branchJBlock
JBlock. add(JStatement s)
Adds a statement to this blockJBlock
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 blockJBlock
JCase. body()
JBlock
JCatchBlock. body()
JBlock
JDoLoop. body()
JBlock
JForEach. body()
JBlock
JForLoop. body()
JBlock
JMethod. body()
Get the block that makes up body of this methodJBlock
JTryBlock. body()
JBlock
JWhileLoop. body()
JBlock
JDefinedClass. init()
Creates, if necessary, and returns the static initializer for this class.
-