00001 package instruction.gui.internal; 00002 00003 import instruction.importer.PlanImporter; 00004 00005 public class PlanImporterWrapper { 00006 00007 static private PlanImporter importer = null; 00008 00009 static public PlanImporter getImporter() { 00010 if (importer == null) 00011 importer = new PlanImporter(); 00012 00013 return importer; 00014 } 00015 }