팀프로젝트를 진행하면서 Swing으로 개발을 해보았는데 DefaultListModel 예제를 찾아보다가 MVC 개념에 대해 알게되어 글을 작성한다.MVC pattern 라고 하는데 개발자가 UI를 구성할 때 제시하는 모델 중 하나이다. Model that represents the data for the application.View that is the visual representation of that data.Controller that takes user input on the view and translates that to changes in the model.Model : 어플리케이션을 위한 데이터를 대표함. 데이터를 저장, 보관하며 View 혹은 Controller의 정보를 가지지 않으며..