1 32 33 package it.businesslogic.ireport.plugin.textwizard; 34 35 39 public class TextWizard extends it.businesslogic.ireport.plugin.IReportPlugin { 40 41 TextWizardForm twf = null; 42 43 44 public TextWizard() { 45 } 46 47 public void call() { 48 if (twf == null) 49 { 50 twf = new TextWizardForm(it.businesslogic.ireport.gui.MainFrame.getMainInstance(), false); 51 } 52 53 twf.setVisible(true); 54 } 55 56 public void configure() { 57 58 } 59 60 } 61 | Popular Tags |