Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

flow4j.flow
Interface ITask  view ITask download ITask.java

All Known Implementing Classes:
AbstractTask

public interface ITask

The ITask interface supports the methods for task execution and property settings.


Method Summary
 void execute(FlowDictionary dictionary)
          Executes the task.
 java.lang.Object getProperty(java.lang.Object key)
          returns a task property.
 void setProperty(java.lang.Object key, boolean value)
          Sets a task property.
 void setProperty(java.lang.Object key, double value)
          Sets a task property.
 void setProperty(java.lang.Object key, int value)
          Sets a task property.
 void setProperty(java.lang.Object key, long value)
          Sets a task property.
 void setProperty(java.lang.Object key, java.lang.Object value)
          Sets a task property.
 

Method Detail

execute

public void execute(FlowDictionary dictionary)
Executes the task.


getProperty

public java.lang.Object getProperty(java.lang.Object key)
returns a task property.


setProperty

public void setProperty(java.lang.Object key,
                        java.lang.Object value)
Sets a task property.


setProperty

public void setProperty(java.lang.Object key,
                        int value)
Sets a task property.


setProperty

public void setProperty(java.lang.Object key,
                        boolean value)
Sets a task property.


setProperty

public void setProperty(java.lang.Object key,
                        double value)
Sets a task property.


setProperty

public void setProperty(java.lang.Object key,
                        long value)
Sets a task property.