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 388B

1234567891011121314151617
  1. /*
  2. * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
  3. * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
  4. */
  5. package ChatProgramm.controller.commands;
  6. /**
  7. *
  8. * @author ahren
  9. */
  10. public interface CommandInterface
  11. {
  12. public void execute();
  13. public void undo();
  14. public boolean isUndoable();
  15. }