You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/08/17 02:55:17 UTC

svn commit: r1158482 - /tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/cron/PeriodicExecutor.java

Author: hlship
Date: Wed Aug 17 00:55:17 2011
New Revision: 1158482

URL: http://svn.apache.org/viewvc?rev=1158482&view=rev
Log:
Fix some broken JavaDoc

Modified:
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/cron/PeriodicExecutor.java

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/cron/PeriodicExecutor.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/cron/PeriodicExecutor.java?rev=1158482&r1=1158481&r2=1158482&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/cron/PeriodicExecutor.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/cron/PeriodicExecutor.java Wed Aug 17 00:55:17 2011
@@ -22,11 +22,12 @@ package org.apache.tapestry5.ioc.service
 public interface PeriodicExecutor
 {
     /**
-     * Adds a job to be executed. The job is executed in a thread pool (via {@link org.apache.tapestry5.ioc.services.ParallelExecutor#invoke(org.apache.tapestry5.ioc.Invokable)}}, as determined by the schedule.
+     * Adds a job to be executed. The job is executed in a thread pool (via {@link org.apache.tapestry5.ioc.services.ParallelExecutor#invoke(org.apache.tapestry5.ioc.Invokable)}), as determined by the schedule.
      *
      * @param schedule defines when the job will next execute
      * @param name     a name used in debugging output related to the job
-     * @param job      a Runnable object that represents the work to be done  @return a PeriodicJob that can be used to query when the job executes, or to cancel its execution
+     * @param job      a Runnable object that represents the work to be done
+     * @returns a PeriodicJob that can be used to query when the job executes, or to cancel its execution
      */
     PeriodicJob addJob(Schedule schedule, String name, Runnable job);
 }