This code element represents a block of code, that is to say a list of
statements enclosed in curly brackets. When the context calls for a return
value, the block should contain a return statement as a lastly reachable
statement. The returned type if any is given by R.
getStatements() Returns the statements enclosed by this block.
void
insertAfter(Filter<? extends CtStatement> insertionPoints, CtStatement statement) Inserts the given statement after a set of insertion points given by a
filter.
insertBefore(Filter<? extends CtStatement> insertionPoints, CtStatement statement) Inserts the given statement before a set of insertion points given by a
filter.