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

36 lines
679 B

package com.fr.start;
import com.fr.design.mainframe.actions.NewFormAction;
import com.fr.design.menu.ShortCut;
import com.fr.design.module.FormDesignerModule;
public class Designer4Form extends BaseDesigner {
/**
* 主函数
* @param args 入口参数
*/
public static void main(String[] args) {
new Designer4Form(args);
}
public Designer4Form(String[] args) {
super(args);
}
@Override
protected String module2Start() {
return FormDesignerModule.class.getName();
}
/**
* 创建新建文件菜单
* @return 菜单
*/
public ShortCut[] createNewFileShortCuts() {
return new ShortCut[]{
new NewFormAction()
};
}
}