Author: tchemit Date: 2008-02-26 22:09:23 +0000 (Tue, 26 Feb 2008) New Revision: 32 Modified: trunk/rules/InterdictionEngin.java Log: #1605 : add import and annotation Doc on params Modified: trunk/rules/InterdictionEngin.java =================================================================== --- trunk/rules/InterdictionEngin.java 2008-02-26 22:08:41 UTC (rev 31) +++ trunk/rules/InterdictionEngin.java 2008-02-26 22:09:23 UTC (rev 32) @@ -26,6 +26,8 @@ import fr.ifremer.isisfish.datastore.SimulationStorage; import fr.ifremer.isisfish.datastore.ResultStorage; +import fr.ifremer.isisfish.util.Doc; // pour pouvoir afficher une aide contextuelle (BUG#1605) + /** * InterdictionEngin.java * @@ -42,10 +44,15 @@ /** to use log facility, just put in your code: log.info("..."); */ static private Log log = LogFactory.getLog(InterdictionEngin.class); + @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