mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-26 23:57:25 +01:00
20 lines
423 B
Java
20 lines
423 B
Java
package com.gpl.rpg.atcontentstudio.ui;
|
|
|
|
import javax.swing.JCheckBox;
|
|
|
|
public class IntegerBasedCheckBox extends JCheckBox {
|
|
|
|
private static final long serialVersionUID = 3941646360487399554L;
|
|
|
|
static final Integer one = 1;
|
|
|
|
public Integer getIntegerValue() {
|
|
return isSelected() ? one : null;
|
|
}
|
|
|
|
public void setIntegerValue(Integer val) {
|
|
setSelected(val != null && val.equals(one));
|
|
}
|
|
|
|
}
|