帆软报表设计器源代码。
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.
 
 
 
 

34 lines
602 B

package com.fr.design.fun;
import com.fr.stable.fun.Level;
import javax.swing.*;
/**
* 导出菜单设计器端拓展,用于控制该菜单是否在web端显示
*/
public interface ExportToolBarProvider extends Level{
String XML_TAG = "ExportToolBarProvider";
int CURRENT_LEVEL = 1;
/**
*
* 用于添加 控制web端是否显示该菜单的checkbox的面板
*
* @param pane 面板
* @return 该面板
*/
JPanel updateCenterPane(JPanel pane);
/**
* 更新界面
*/
void populate();
/**
* 保存界面设置
*/
void update();
}