Hello,
I am a big fan of JMesa and am enjoying its different cool features. But one of my teammate who doesn't know much about it is complaining about something as bellow:
So basically using JMesa I have moved some of my UI code to controller, besides that I have an import to the worksheet and also for the worksheet to work I have implemented the saveWorkSheet() method as bellow:
public void saveWorksheet(Worksheet worksheet) {
saveWorksheetChanges(worksheet);
}
});
What my teammate is saying is that controller should not be bounded to any UI component. There shouldn't be any import in controller to a UI component like worksheet and besides that we should not have to implement such a method as above in controller. He is saying if the UI technology changed my controller shouldn't break.
So what are you inputs on this.
Thanks.