massivecompiler.java
来自「优秀的打印控件全源代码,类似水晶表的设计器!」· Java 代码 · 共 34 行
JAVA
34 行
/* * MassiveCompiler.java * * Created on 19 maggio 2004, 18.42 */package it.businesslogic.ireport.plugin.massivecompiler;import it.businesslogic.ireport.plugin.*;import it.businesslogic.ireport.gui.*;/** * * @author Administrator */public class MassiveCompiler extends IReportPlugin { MassiveCompilerFrame mcf = null; /** Creates a new instance of MassiveCompiler */ public MassiveCompiler() { } public void call() { if (mcf == null) { mcf = new MassiveCompilerFrame(); mcf.setIReportMainFrame( this.getMainFrame() ); } mcf.show(); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?