All Downloads are FREE. Search and download functionalities are using the official Maven repository.

editor.util.LabCheckbox Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor.util;

import javax.swing.*;

/**
 */
public class LabCheckbox extends JCheckBox
{
  public LabCheckbox()
  {
    super();
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( Icon icon )
  {
    super( icon );
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( Icon icon, boolean selected )
  {
    super( icon, selected );
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( String text )
  {
    super( text );
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( Action a )
  {
    super( a );
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( String text, boolean selected )
  {
    super( text, selected );
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( String text, Icon icon )
  {
    super( text, icon );
    setBorderPaintedFlat( true );
  }

  public LabCheckbox( String text, Icon icon, boolean selected )
  {
    super( text, icon, selected );
    setBorderPaintedFlat( true );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy