X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fmain%2FRecordProgramAction.java;h=4cbe12bc91aabbfb05ba103af050f2e319ca19ac;hb=fe5539c3fc40659242cac7b2954a04101ba94504;hp=00367934d19ea4293eb05e3c7b00dc665022edb6;hpb=3477b9963f17a8d32a1b62a80f80bcac9df939cf;p=utils diff --git a/crawler/kiss/src/org/wamblee/crawler/kiss/main/RecordProgramAction.java b/crawler/kiss/src/org/wamblee/crawler/kiss/main/RecordProgramAction.java index 00367934..4cbe12bc 100644 --- a/crawler/kiss/src/org/wamblee/crawler/kiss/main/RecordProgramAction.java +++ b/crawler/kiss/src/org/wamblee/crawler/kiss/main/RecordProgramAction.java @@ -12,32 +12,35 @@ * 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. Higher values have 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); }