Package net.sf.minuteProject.configuration.bean

Examples of net.sf.minuteProject.configuration.bean.GeneratorBean


    }
    return null;
  }
 
  public String getTechnicalPackage(Template template) {
    GeneratorBean bean = getModelEntity();
    if (bean!=null)
      return bean.getTechnicalPackage(template);
    return "TECH PACKAGE NOT DEFINED";
  }
View Full Code Here


      return bean.getTechnicalPackage(template);
    return "TECH PACKAGE NOT DEFINED";
  }

  public String getName() {
    GeneratorBean bean = getModelEntity();
    if (bean!=null)
      return bean.getName();
    return "NAME NOT DEFINED";
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.GeneratorBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.