package dynaop.util; /** * Command that executes against a single argument. * * @author Bob Lee (crazybob@crazybob.org) */ public interface Closure { void execute(Object o); }