/** Creates a new instance of CullTemplateConverter */
public JavaToJavaTemplateConverter(File buildDir, String classpath, File outputDir, String packageName,
File template, String classSuffix, String fileSuffix,
String javaSourceVersion, String javaTargetVersion) {
super(outputDir, packageName, fileSuffix);
fac = new TemplateFactory(buildDir, classpath, javaSourceVersion, javaTargetVersion );
this.templateFile = template;
this.classSuffix = classSuffix;
}