helloworld.java
来自「优秀的打印控件全源代码,类似水晶表的设计器!」· Java 代码 · 共 28 行
JAVA
28 行
/* * HelloWorld.java * * Created on 21 maggio 2004, 7.36 */package it.businesslogic.ireport.plugin.examples;/** * * @author Administrator */public class HelloWorld extends it.businesslogic.ireport.plugin.IReportPlugin { /** Creates a new instance of HelloWorld */ public HelloWorld() { } public void call() { javax.swing.JOptionPane.showMessageDialog(this.getMainFrame(), "Hello from plugin!"); } public void configure() { javax.swing.JOptionPane.showMessageDialog(this.getMainFrame(), "Hello from plugin configuration!"); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?