this.template = template;
}
public com.sun.grid.cull.CullConverter createConverter() throws BuildException {
CullJavaTemplateConverter ret = new CullJavaTemplateConverter(cullConvAntTask.getBuildDir(),
cullConvAntTask.getClassPathAsString(),
getOutputDir(),
template,
cullConvAntTask.getSource(),
cullConvAntTask.getTarget());
ret.setPackagename(getPackagename());
if(classSuffix != null ) {
ret.setClassSuffix(classSuffix);
}
return ret;
}