I have finished my assignment for near a month . Recentlly , I read many tips about MVC , but I have not considered it in my design . I hold all view , controller , model of client in one class . Now ,I found it a very big project to use the MVC design pattern to seperating the one client class . So , I want to know if it is OK to avoid the MVC in client class . Of course , this pattern is used in the JTable .
If we must use MVC , which way in the following is better ?
1: One Controller to control all view .
2: Each View with a controller .