/** * Created by ashesh on 2/5/2016. */ public class MVCExampleKeyboardEvents { public static void main(String[] args) { IModel model = new Model(); Controller controller = new Controller(model); IView view = new JFrameView("Echo a string", controller); controller.setView(view); } }