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.
26 lines
467 B
26 lines
467 B
package com.fanruan.api.design.ui.component; |
|
|
|
import javax.swing.*; |
|
import java.util.Vector; |
|
|
|
/** |
|
* @author Kalven |
|
* @version 10.0 |
|
* Created by Kalven on 2019/9/4 |
|
* 列表组件 |
|
*/ |
|
public class UIList extends com.fr.design.gui.ilist.UIList { |
|
|
|
public UIList(ListModel dataModel) { |
|
super(dataModel); |
|
} |
|
|
|
public UIList(Object[] listData) { |
|
super(listData); |
|
} |
|
|
|
public UIList(Vector<?> listData) { |
|
super(listData); |
|
} |
|
|
|
}
|
|
|