Uses of Interface
org.jboss.jdeparser.JLabel
-
-
Uses of JLabel in org.jboss.jdeparser
Methods in org.jboss.jdeparser that return JLabel Modifier and Type Method Description JLabel
JBlock. anonLabel()
Add a label at this point whose unique name is automatically generated.JLabel
JBlock. anonLabel(JLabel label)
Name and attach a forward label as anonymous.JLabel
JBlock. forwardLabel()
Create a forward label that can be named and attached later.JLabel
JBlock. label(java.lang.String name)
Add a label at this point, which may be used for future branch instructions.JLabel
JBlock. label(JLabel label, java.lang.String name)
Name and attach a forward label.Methods in org.jboss.jdeparser with parameters of type JLabel Modifier and Type Method Description JStatement
JBlock. _break(JLabel label)
Insert a labelledbreak
statement at this point.JStatement
JBlock. _continue(JLabel label)
Insert a labelledcontinue
statement at this point.JLabel
JBlock. anonLabel(JLabel label)
Name and attach a forward label as anonymous.JLabel
JBlock. label(JLabel label, java.lang.String name)
Name and attach a forward label.
-