MVC pattern with java Swing
问题 I have an Idea to develop a java Swing application using the MVC pattern. I have described my idea below and please let me know that, is this a correct way of using the MVC pattern for java Swing? this is the view following methods are used to get and set the name of the above view, //at top of the view its model and controller is defined as Model model = null; Controller controller = null; //constructor public view(){ this.model = new Model(); this.controller = new Controller(this, model);/