Constructor JCheckBox(String text, boolean selected)
Member of:
javax.swing.JCheckBox
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
JCheckBox box = new JCheckBox(label, selected);
2
clearEachIteration = new JCheckBox(JMeterUtils.getResString(clearEachIterationLabel), false);
3
perIterationCheck = new JCheckBox(JMeterUtils.getResString("update_per_iter"), true);
4
JCheckBox box = new JCheckBox(label, isSelected);
5
lockCB = new JCheckBox("Pause Auto-Scrolling", false);
6
JCheckBox cb = new JCheckBox(type, false);
7
useAdmin = new JCheckBox("Use Admin Server", config.isActive());
8
JCheckBox cb = new JCheckBox(type, false);
9
new JCheckBox("Notify on Standard Error",
10
previewCheckBox = new JCheckBox(CDox.getLocalizer().get("imgpreview"), preview);
11
JCheckBox openNewSchema = new JCheckBox("Create a new schema with this file", true);
12
jcx = new JCheckBox(bundle.getString("CTL_NEXTSTARTUP"), true);
13
recurseCb = new JCheckBox("Include subdirectories", true);
14
this.parentBox=new JCheckBox("Generate parent linkage.",this.getModel().getCreateParents());
15
final JCheckBox typedBt=new JCheckBox("Typed Literal",(l.getDatatype()!=null) ? true : false);
16
match = new JCheckBox("match/ignore node name", true);
17
hideDownstreamBox = new JCheckBox("Hide downstream errors", true);
18
checkbox_lhs_local = new JCheckBox("local", false);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.