I have a schema that generates:
public class A(){
int f;
int g;
}
And i wanted the generated class to be:
public class A(){
String f;
int g;
}
p.s.: I just want this ("f") specific field to be changed.
I've tried using jaxb binding (through the usage of the file binding.xjb) but didn't succeed. Is there a way to do this using this feature? Is this the proper way to do this?