public class Controller { protected Model m; public Controller(Model m) { this.m = m; } protected void shutdown() { m.saveData(); System.exit(0); } }