X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fmain%2FProgramAction.java;h=5211a5e99eaaf878f9a9981e08ee016226118b54;hb=dde2a507abf94989ae0576e99d8c1180a74d29db;hp=e9d3bcbe84c9cef2cdb2ff21cf09661a5c2e1252;hpb=01c0abdc7d3339b36216665ff70c99ba3e50c180;p=utils diff --git a/crawler/kiss/src/org/wamblee/crawler/kiss/main/ProgramAction.java b/crawler/kiss/src/org/wamblee/crawler/kiss/main/ProgramAction.java index e9d3bcbe..5211a5e9 100644 --- a/crawler/kiss/src/org/wamblee/crawler/kiss/main/ProgramAction.java +++ b/crawler/kiss/src/org/wamblee/crawler/kiss/main/ProgramAction.java @@ -12,21 +12,24 @@ * 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); }