checkstyle and checkdoc are now ok.
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / main / RecordProgramAction.java
index 00367934d19ea4293eb05e3c7b00dc665022edb6..8458a957495a2f79a4d62f71175b94edc44ecce7 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 to record a program. 
+ * Represents an action to record a program.
  */
 public class RecordProgramAction implements ProgramAction {
-    
-    private int _priority; 
-    
+
+    private int _priority;
+
     /**
-     * Constructs the action. 
-     *
+     * Constructs the action.
+     * @param aPriority Priority of the recording action. Lower values mean
+     *   higher priority.  
      */
-    public void ReportProgramAction(int aPriority) { 
-        _priority = aPriority; 
+    public RecordProgramAction(int aPriority) {
+        _priority = aPriority;
     }
 
-    /* (non-Javadoc)
-     * @see org.wamblee.crawler.kiss.ProgramAction#execute(org.wamblee.crawler.kiss.Program, org.wamblee.crawler.kiss.Report)
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.wamblee.crawler.kiss.ProgramAction#execute(org.wamblee.crawler.kiss.Program,
+     *      org.wamblee.crawler.kiss.Report)
      */
-    public void execute(Program aProgram, ProgramActionExecutor aReport) { 
+    public void execute(Program aProgram, ProgramActionExecutor aReport) {
         aReport.recordProgram(_priority, aProgram);
     }