/* * Executor - Tim Tyler 2000. * * An Executor class * * This code has been placed in the public domain. * This means that you can do what you like with it. * Please note that this code comes with no warranty. * */ /* * To Do: * */ import java.lang.Object; public interface Executor { public void execute(); // int[] data); }