You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommandInterface.java 407B

123456789101112131415161718
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package kontakte.controller;
  7. /**
  8. * Das Interface für Kommandos, die mit dem Model interagieren.
  9. *
  10. * @see kontakte.model.Model
  11. */
  12. public interface CommandInterface
  13. {
  14. public void execute();
  15. public void undo();
  16. }