Java JCheckBox newJCheckBox()

Here you can find the source of newJCheckBox()

Description

new JCheckBox

License

Open Source License

Declaration

public static JCheckBox newJCheckBox() 

Method Source Code

//package com.java2s;
/**/*w  ww  . j  ava 2 s .  c  o m*/
 * Copyright 2009 - 2014 J?rgen Lundgren
 * 
 * This file is part of org.macroing.wicked.
 * 
 * org.macroing.wicked is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * org.macroing.wicked is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with org.macroing.wicked. If not, see <http://www.gnu.org/licenses/>.
 */

import java.lang.reflect.InvocationTargetException;

import javax.swing.JCheckBox;

import javax.swing.SwingUtilities;

public class Main {
    public static JCheckBox newJCheckBox() {
        final JCheckBox[] jCheckBox = new JCheckBox[1];

        try {
            SwingUtilities.invokeAndWait(new Runnable() {
                @Override
                public void run() {
                    jCheckBox[0] = new JCheckBox();
                    jCheckBox[0].setBorderPainted(true);
                }
            });
        } catch (InterruptedException | InvocationTargetException e) {

        }

        return jCheckBox[0];
    }
}

Related

  1. exclusive(final JCheckBox first, final boolean firstState, final JCheckBox second, final boolean secondState)
  2. imply(final JCheckBox checked, final boolean checkedState, final JCheckBox changed, final boolean impliedState)
  3. initJCheckBox(JCheckBox box, String element)
  4. isCheckBoxModified(JCheckBox checkBox, boolean originalValue)
  5. link(final JCheckBox box, final JComponent... comps)
  6. newJCheckBox(String n, char m)
  7. onCheckBoxChange(JCheckBox field, final Runnable task)
  8. setDependency(final JCheckBox master, final JCheckBox slave)
  9. setSelectedWithClick(JCheckBox checkBox, boolean selected)