diff options
Diffstat (limited to 'Week9/src/com/camilstaps/shop/Command.java')
-rw-r--r-- | Week9/src/com/camilstaps/shop/Command.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Week9/src/com/camilstaps/shop/Command.java b/Week9/src/com/camilstaps/shop/Command.java deleted file mode 100644 index b4694c0..0000000 --- a/Week9/src/com/camilstaps/shop/Command.java +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright (c) 2015 Camil Staps <info@camilstaps.nl> - * See the LICENSE file for copying permission. - */ - -package com.camilstaps.shop; - -/** - * A Command is something that can be executed by a normal visitor, a User or an Administrator. - * The current version only holds one string as command, but later versions could include arguments. - * @author Camil Staps, s4498062 - */ -public class Command { - - private final String command; - - public Command(String command) { - this.command = command; - } - - public String getCommand() { - return command; - } - -} |