package com.vci.client.tool;
|
|
import java.awt.BorderLayout;
|
|
import com.vci.client.common.VCIBasePanel;
|
import com.vci.client.framework.rightConfig.object.FunctionObject;
|
|
/**
|
* FormAttrSetting 功能模块面板
|
* @author xiongchao
|
*
|
*/
|
public class FormAttrSettingModulePanel extends VCIBasePanel {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 9146772842887461955L;
|
public FormAttrSettingModulePanel(FunctionObject funcObj) {
|
super(funcObj);
|
init();
|
}
|
|
public void init(){
|
initUI();
|
}
|
|
private void initUI(){
|
setLayout(new BorderLayout());
|
add(new FormAttrSettingPanel(), BorderLayout.CENTER);
|
}
|
}
|