1 package dynaop.util;2 3 /**4 * Command that executes against a single argument.5 * 6 * @author Bob Lee (crazybob@crazybob.org)7 */8 public interface Closure {9 10 void execute(Object o);11 }12