com.jamonapi.utils
Interface Command


public interface Command

Simple interface that is used in the implementation of the Gang Of 4 Command pattern in Java. Implement this Interface to pass a command to an internal iterator


Method Summary
 void execute(java.lang.Object value)
           
 

Method Detail

execute

public void execute(java.lang.Object value)
             throws java.lang.Exception
java.lang.Exception