| Package | Description |
|---|---|
| com.helger.jcodemodel |
Library for generating Java source code.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JLambdaBlock
A special JBlock implementation that supports lambda expressions.
|
| Modifier and Type | Method and Description |
|---|---|
JBlock |
JConditional._else()
Create a block to be executed by "else" branch
|
JBlock |
JTryBlock._finally() |
JBlock |
JConditional._then()
Return the block to be executed by the "then" branch
|
JBlock |
JBlock.add(IJStatement s)
Adds a statement to this block
|
JBlock |
JBlock.assign(IJAssignmentTarget lhs,
IJExpression exp)
Creates an assignment statement and adds it to this block.
|
JBlock |
JBlock.assignDivide(IJAssignmentTarget lhs,
IJExpression exp) |
JBlock |
JBlock.assignMinus(IJAssignmentTarget lhs,
IJExpression exp) |
JBlock |
JBlock.assignPlus(IJAssignmentTarget lhs,
IJExpression exp) |
JBlock |
JBlock.assignTimes(IJAssignmentTarget lhs,
IJExpression exp) |
JBlock |
JBlock.block()
Create a sub-block and add it to this block.
|
JBlock |
JBlock.block(boolean bBracesRequired,
boolean bIndentRequired)
Create a sub-block and add it to this block
|
JBlock |
JBlock.blockSimple()
Create a sub-block and add it to this block.
|
JBlock |
JBlock.blockVirtual()
Create a sub-block and add it to this block.
|
JBlock |
JWhileLoop.body() |
JBlock |
JTryBlock.body() |
JBlock |
JSynchronizedBlock.body() |
JBlock |
JMethod.body()
Get the block that makes up body of this method
|
JBlock |
JForLoop.body() |
JBlock |
JForEach.body() |
JBlock |
JDoLoop.body() |
JBlock |
JCatchBlock.body() |
JBlock |
JCase.body() |
JBlock |
JBlock.bracesRequired(boolean bBracesRequired) |
JBlock |
JBlock.indentRequired(boolean bIndentRequired) |
JBlock |
JDefinedClass.init()
Creates, if necessary, and returns the static initializer for this class.
|
JBlock |
JBlock.insertBefore(JVar var,
Object before) |
JBlock |
JDefinedClass.instanceInit()
Creates, if necessary, and returns the instance initializer for this class.
|
JBlock |
JBlock.virtual(boolean bVirtualBlock)
Mark this block virtual or not.
|
Copyright © 2013–2015 Philip Helger. All rights reserved.