Hi,
during generating code from a uml model code inside of methods is deleted.
A small example:
Code before forward engineering:
public void setNewAttribute(int newAttribute) {
this.newAttribute = newAttribute;
}
Code after forward engineering:
public void setNewAttribute(int newAttribute) {
}
How can I avoid that existing code is modified?
Thanks in advance and best regards,
Guido