Package gluebooster.basic.sourcecodegeneration

Examples of gluebooster.basic.sourcecodegeneration.ObjectAnalyzingCodeGenerator


     }
 
  @Override
  protected void perform(MavenProject project) throws Exception {
     //getLog().info("Executing PropertiesKeyReaderMojo with " + propertyFiles);
     ObjectAnalyzingCodeGenerator codeGenerator = new ObjectAnalyzingCodeGenerator();
     for (int i = 0; i < propertyFiles.length; i++){
      
       getLog().info("generating " + outputJavaPackageNames[i] + "." + outputJavaClassNames[i] + "\nin " + outputJavaFiles[i] + "\nfrom " + propertyFiles[i]);
        codeGenerator.generatePropertiesIDClass(propertyFiles[i], outputJavaFiles[i], outputJavaPackageNames[i], outputJavaClassNames[i]);
     }
   
  }
View Full Code Here

TOP

Related Classes of gluebooster.basic.sourcecodegeneration.ObjectAnalyzingCodeGenerator

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.