Command pattern
This commit is contained in:
6
design-pattern/src/Command/Command.java
Normal file
6
design-pattern/src/Command/Command.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package Command;
|
||||
|
||||
public interface Command extends Comparable<Command>{
|
||||
|
||||
void execute();
|
||||
}
|
||||
Reference in New Issue
Block a user