Hello
My name is nabil, I'm an enginner in 'SOFTEAM Objecteering software' in paris, and I work in about openarchitectureware 4.2 for code generation in Java
I try use Extensions whith Java, the class is :
package help;
[b]import data.*;
public class EntityHelper{
public static String className(Entity e) {
return e.getName()+"Implementation";
}
public static String classFileName (Entity e) {
return className(e)+ ".java";
}[/b]}
and file of extension is :
import data;
[b]import metamodel;
String className(Entity e):
JAVA help.EntityHelper.className(data.Entity);
String classFileName(Entity e):
JAVA help.EntityHelper.classFileName(data.Entity)[/b];
But, when I execute the woorkflow,I have always a problem which I can't resolve,The problem is 'argument type mutch'.
I don't see what I do wrong
Thanks.