01: package com.jamonapi.utils;
02:
03: /**
04:
05: * Simple interface that is used in the implementation of the Gang Of 4 Command pattern in Java.
06:
07: * Implement this Interface to pass a command to an internal iterator
08:
09: **/
10:
11: public interface Command {
12:
13: public void execute(Object value) throws Exception;
14:
15: }
|