Browse Source

Neues ICommand Interface erstellt

vollständige_und_weitere_testate
hertero 3 years ago
committed by chris
parent
commit
31069fddbf
  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