Author: tchemit Date: 2008-02-26 22:06:16 +0000 (Tue, 26 Feb 2008) New Revision: 29 Modified: trunk/rules/Cantonnement.java Log: #1605 : add import and annotation Doc on params Modified: trunk/rules/Cantonnement.java =================================================================== --- trunk/rules/Cantonnement.java 2008-02-26 22:03:55 UTC (rev 28) +++ trunk/rules/Cantonnement.java 2008-02-26 22:06:16 UTC (rev 29) @@ -24,6 +24,8 @@ import fr.ifremer.isisfish.entities.*; import fr.ifremer.isisfish.rule.AbstractRule; +import fr.ifremer.isisfish.util.Doc; // pour pouvoir afficher une aide contextuelle (BUG#1605) + /** * Cantonnement.java * @@ -43,12 +45,18 @@ /** to use log facility, just put in your code: log.info("..."); */ static private Log log = LogFactory.getLog(Cantonnement.class); - + + @Doc(value="do the doc of param zone") public Zone param_zone = null; + @Doc(value="do the doc of param gear") public Gear param_gear = null; + @Doc(value="do the doc of param beginDate") public Date param_beginDate = new Date(0); + @Doc(value="do the doc of param endDate") public Date param_endDate = new Date(119); + @Doc(value="do the doc of param beginMonth") public Month param_beginMonth = Month.JANUARY; + @Doc(value="do the doc of param endMonth") public Month param_endMonth = Month.DECEMBER; public String [] necessaryResult = {
participants (1)
-
tchemit@users.labs.libre-entreprise.org