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