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.
30 lines
789 B
30 lines
789 B
package com.fr.design.fun; |
|
|
|
import com.fr.design.DesignModelAdapter; |
|
import com.fr.design.data.BasicTableDataTreePane; |
|
import com.fr.design.gui.controlpane.JControlPane; |
|
import com.fr.stable.fun.Level; |
|
|
|
/** |
|
* 自定义的模板(服务器)数据集的树样式接口 el:分组样式 |
|
* Coder: zack |
|
* Date: 2016/4/18 |
|
* Time: 9:04 |
|
*/ |
|
public interface TableDataPaneProcessor extends Level { |
|
String XML_TAG = "TableDataPaneProcessor"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
/** |
|
* 创建数据集面板 |
|
* @return 数据集面板 |
|
*/ |
|
BasicTableDataTreePane createTableDataTreePane(DesignModelAdapter<?, ?> tc); |
|
|
|
/** |
|
* 服务器数据集面板(模板数据集面板) |
|
* @return 服务器数据集面板 |
|
*/ |
|
JControlPane createServerTableDataPane(); |
|
|
|
}
|
|
|