本文整理了Java中javax.swing.JCheckBox.setLabel()
方法的一些代码示例,展示了JCheckBox.setLabel()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JCheckBox.setLabel()
方法的具体详情如下:
包路径:javax.swing.JCheckBox
类名称:JCheckBox
方法名:setLabel
暂无
代码示例来源:origin: magefree/mage
showFullImagePath.setToolTipText("Show the path Xmage is expecting for this card's image (only displays if missing)");
showFullImagePath.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
showFullImagePath.setLabel("Display image path for missing images");
showFullImagePath.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
代码示例来源:origin: org.gephi/export-plugin-ui
symmetricCheckBox.setLabel("Symmetric");
代码示例来源:origin: org.gephi/export-plugin-ui
normalizeCheckBox.setLabel(org.openide.util.NbBundle.getMessage(UIExporterVNAPanel.class, "UIExporterGML.normalize.text")); // NOI18N
代码示例来源:origin: org.gephi/export-plugin-ui
normalizeCheckBox.setLabel(org.openide.util.NbBundle.getMessage(UIExporterGMLPanel.class, "UIExporterGML.normalize.text")); // NOI18N
代码示例来源:origin: org.jflux/org.jflux.swing.services
jCheckBox1.setLabel("Class names");
jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox2.setLabel("Property keys");
jCheckBox2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox3.setLabel("Property values");
jCheckBox3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox4.setLabel("Dependencies");
jCheckBox4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
代码示例来源:origin: org.rwshop/org.rwshop.swing.common
jCheckBox1.setLabel("Class names");
jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox2.setLabel("Property keys");
jCheckBox2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox3.setLabel("Property values");
jCheckBox3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox4.setLabel("Dependencies");
jCheckBox4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-visualweb-webui-designtime
selectValuesCheckBox.setLabel(bundle.getString("OptionsListPanel.checkbox.select.label"));
selectValuesCheckBox.addItemListener(new java.awt.event.ItemListener() {
public void itemStateChanged(java.awt.event.ItemEvent evt) {
multipleChoiceCheckBox.setLabel(bundle.getString("OptionsListPanel.checkbox.multiple.label"));
multipleChoiceCheckBox.addItemListener(new java.awt.event.ItemListener() {
public void itemStateChanged(java.awt.event.ItemEvent evt) {
代码示例来源:origin: JGillam/burp-co2
panel3.add(specialSpinner, new com.intellij.uiDesigner.core.GridConstraints(4, 1, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_HORIZONTAL, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_WANT_GROW, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
restrictSpecialsCheckBox = new JCheckBox();
restrictSpecialsCheckBox.setLabel("Restrict To:");
restrictSpecialsCheckBox.setText("Restrict To:");
restrictSpecialsCheckBox.setToolTipText("Unselect to allow any printable ASCII non-alphanum chars");
内容来源于网络,如有侵权,请联系作者删除!