Hi Peter,
You can instruct the reverse engineering to ignore a class or method by adding the @AuxiliaryModelComponent annotation to a comment block above the class or method. For example, to ignore a whole class:
/**
* @AuxiliaryModelComponent
*/
@Service(“MyService”)
public class MyService implements IMyService {
}
If you add the annotation prior to saving the class the first time, it should remain untouched by the DSL.
Please let me know if this helps,
Cindy