Uses of Class
com.sun.codemodel.JLabel
-
Packages that use JLabel Package Description com.sun.codemodel Library for generating Java source code -
-
Uses of JLabel in com.sun.codemodel
Fields in com.sun.codemodel declared as JLabel Modifier and Type Field Description private JLabel
JBreak. label
private JLabel
JContinue. label
Methods in com.sun.codemodel that return JLabel Modifier and Type Method Description JLabel
JBlock. label(java.lang.String name)
Create a label, which can be referenced fromcontinue
andbreak
statements.Methods in com.sun.codemodel with parameters of type JLabel Modifier and Type Method Description void
JBlock. _break(JLabel label)
void
JBlock. _continue(JLabel label)
Create a continue statement and add it to this blockConstructors in com.sun.codemodel with parameters of type JLabel Constructor Description JBreak(JLabel _label)
JBreak constructorJContinue(JLabel _label)
JContinue constructor.
-