1 32 33 package it.businesslogic.ireport.plugin.massivecompiler; 34 35 import it.businesslogic.ireport.plugin.*; 36 import it.businesslogic.ireport.gui.*; 37 41 public class MassiveCompiler extends IReportPlugin { 42 43 MassiveCompilerFrame mcf = null; 44 45 46 public MassiveCompiler() { 47 } 48 49 public void call() { 50 if (mcf == null) 51 { 52 mcf = new MassiveCompilerFrame(); 53 mcf.setIReportMainFrame( this.getMainFrame() ); 54 } 55 56 mcf.setVisible(true); 57 } 58 59 } 60 | Popular Tags |