Uses of Class
com.sun.codemodel.JBlock
Packages that use JBlock
-
Uses of JBlock in com.sun.codemodel
Fields in com.sun.codemodel declared as JBlockModifier and TypeFieldDescriptionprivate JBlockJConditional._elseJBlock of statements for optional "else" clauseprivate JBlockJTryBlock._finallyprivate JBlockJConditional._thenJBlock of statements for "then" clauseprivate JBlockJCase.bodyJBlock of statements which makes up body of this While statementprivate JBlockJCatchBlock.bodyprivate JBlockJDoLoop.bodyJBlock of statements which makes up body of this Do statementprivate JBlockJForEach.bodyprivate JBlockJForLoop.bodyprivate JBlockJMethod.bodyJBlock of statements that makes up the body this methodprivate JBlockJTryBlock.bodyprivate JBlockJWhileLoop.bodyJBlock of statements which makes up body of this While statementprivate JBlockJDefinedClass.initStatic initializer, if this class has oneMethods in com.sun.codemodel that return JBlockModifier and TypeMethodDescriptionJConditional._else()Create a block to be executed by "else" branchJTryBlock._finally()JConditional._then()Return the block to be excuted by the "then" branchJBlock.add(JStatement s) Adds a statement to this blockJBlock.assign(JAssignmentTarget lhs, JExpression exp) Creates an assignment statement and adds it to this block.JBlock.assignPlus(JAssignmentTarget lhs, JExpression exp) JBlock.block()Create a sub-block and add it to this blockJCase.body()JCatchBlock.body()JDoLoop.body()JForEach.body()JForLoop.body()JMethod.body()Get the block that makes up body of this methodJTryBlock.body()JWhileLoop.body()JDefinedClass.init()Creates, if necessary, and returns the static initializer for this class.