package net.dirtyfilthy.Bitten;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.JCheckBox;
public class ToggleViewCheckBox extends JCheckBox {
public ToggleViewCheckBox() {
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(Icon icon) {
super(icon);
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(String text) {
super(text);
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(Action a) {
super(a);
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(Icon icon, boolean selected) {
super(icon, selected);
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(String text, boolean selected) {
super(text, selected);
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(String text, Icon icon) {
super(text, icon);
// TODO Auto-generated constructor stub
}
public ToggleViewCheckBox(String text, Icon icon, boolean selected) {
super(text, icon, selected);
// TODO Auto-generated constructor stub
}
}