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.
17 lines
456 B
17 lines
456 B
package com.fanruan.api.design.ui.component; |
|
|
|
import com.fr.design.gui.itableeditorpane.UITableModelAdapter; |
|
|
|
/** |
|
* 表格编辑面板 |
|
* @param <T> |
|
*/ |
|
public class UITableEditorPane<T> extends com.fr.design.gui.itableeditorpane.UITableEditorPane<T> { |
|
public UITableEditorPane(UITableModelAdapter<T> model){ |
|
super(model); |
|
} |
|
|
|
public UITableEditorPane(UITableModelAdapter<T> model, String string){ |
|
super(model, string); |
|
} |
|
}
|
|
|