GOVNOCODE

 avatar
unknown
java
3 years ago
189 B
11
Indexable
package example;

import java.util.List;

public interface Thread extends Runnable {

  List<Command> getExecutedCommands();

  void getCommand(Command cmd);

  void run();

}
Editor is loading...