KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dynaop > util > Closure


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 JavaDoc o);
11 }
12
Popular Tags