Browse Source

Neues ICommand Interface erstellt

T_SS18_List
hertero 3 years ago
parent
commit
817dd5509f
  1. 6
      SimpleLinkedList/src/solution/ICommand.java

6
SimpleLinkedList/src/solution/ICommand.java

@ -0,0 +1,6 @@
package solution;
public interface ICommand<E> {
void execute(E e);
}
Loading…
Cancel
Save