forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
912 B
45 lines
912 B
5 years ago
|
package com.fanruan.api.design.ui.component;
|
||
|
|
||
|
import javax.swing.Action;
|
||
|
import javax.swing.Icon;
|
||
|
|
||
|
/**
|
||
|
* @author Lucian.Chen
|
||
|
* @version 10.0
|
||
|
* Created by Lucian.Chen on 2020/3/20
|
||
|
*/
|
||
|
public class UIRadioButton extends com.fr.design.gui.ibutton.UIRadioButton {
|
||
|
|
||
|
public UIRadioButton() {
|
||
|
super();
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(Icon icon) {
|
||
|
super(icon);
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(Action action) {
|
||
|
super(action);
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(Icon icon, boolean selected) {
|
||
|
super(icon, selected);
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(String text) {
|
||
|
super(text);
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(String text, boolean selected) {
|
||
|
super(text, selected);
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(String text, Icon icon) {
|
||
|
super(text, icon);
|
||
|
}
|
||
|
|
||
|
public UIRadioButton(String text, Icon icon, boolean selected) {
|
||
|
super(text, icon, selected);
|
||
|
}
|
||
|
}
|