(no commit message)
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / main / ProgramAction.java
index e9d3bcbe84c9cef2cdb2ff21cf09661a5c2e1252..5211a5e99eaaf878f9a9981e08ee016226118b54 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 
 package org.wamblee.crawler.kiss.main;
 
 import org.wamblee.crawler.kiss.guide.Program;
 
 /**
- * Represents an action configured for a program.  
+ * Represents an action configured for a program.
  */
 public interface ProgramAction {
 
     /**
-     * Executes the action. 
-     * @param aProgram Program to execute the action for. 
-     * @param aExecutor Report to use. 
+     * Executes the action.
+     * 
+     * @param aProgram
+     *            Program to execute the action for.
+     * @param aExecutor
+     *            Executor to use. 
      */
     void execute(Program aProgram, ProgramActionExecutor aExecutor);
 }