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.
32 lines
673 B
32 lines
673 B
6 years ago
|
package com.fanruan.api.design.ui.component;
|
||
|
|
||
|
import javax.swing.Icon;
|
||
|
|
||
|
/**
|
||
|
* @author Bjorn
|
||
|
* @version 10.0
|
||
|
* Created by Bjorn on 2019-09-19
|
||
|
*/
|
||
|
public class UIButtonGroup<T> extends com.fr.design.gui.ibutton.UIButtonGroup<T> {
|
||
|
|
||
|
public UIButtonGroup(String[] textArray) {
|
||
|
super(textArray);
|
||
|
}
|
||
|
|
||
|
public UIButtonGroup(Icon[] iconArray) {
|
||
|
super(iconArray);
|
||
|
}
|
||
|
|
||
|
public UIButtonGroup(Icon[][] iconArray) {
|
||
|
super(iconArray);
|
||
|
}
|
||
|
|
||
|
public UIButtonGroup(Icon[] iconArray, T[] objects) {
|
||
|
super(iconArray, objects);
|
||
|
}
|
||
|
|
||
|
public UIButtonGroup(Icon[][] iconArray, T[] objects) {
|
||
|
super(iconArray, objects);
|
||
|
}
|
||
|
}
|