X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fmain%2FRecordProgramAction.java;h=8458a957495a2f79a4d62f71175b94edc44ecce7;hb=6984ec9ac2199a2ff2c3370ad92ddafb00a16c77;hp=00367934d19ea4293eb05e3c7b00dc665022edb6;hpb=d85bc24e068a68a54786fae5dc71573607b3b0cb;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..8458a957 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. 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); }