/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package controller.commands; import controller.CommandInterface; import model.AdressverwaltungModel; import view.Adressverwaltung; /** * * @author nobody */ public class CommandSave implements CommandInterface { private Adressverwaltung view; private AdressverwaltungModel model; public CommandSave(Adressverwaltung view, AdressverwaltungModel model) { this.view = view; this.model = model; } @Override public void execute() { } @Override public void undo() { } }