Author: tchemit Date: 2008-02-26 22:10:44 +0000 (Tue, 26 Feb 2008) New Revision: 36 Modified: trunk/rules/TailleMin.java Log: #1605 : add import and annotation Doc on params Modified: trunk/rules/TailleMin.java =================================================================== --- trunk/rules/TailleMin.java 2008-02-26 22:10:23 UTC (rev 35) +++ trunk/rules/TailleMin.java 2008-02-26 22:10:44 UTC (rev 36) @@ -21,6 +21,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) + /** * TailleMin.java * @@ -41,10 +43,15 @@ /** to use log facility, just put in your code: log.info("..."); */ static private Log log = LogFactory.getLog(TailleMin.class); + @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 species") public Species param_species = null; + @Doc(value="do the doc of param TailleMin") public double param_TailleMin = 27; + @Doc(value="do the doc of param propSurvie") public double param_propSurvie = 0; public String [] necessaryResult = {
participants (1)
-
tchemit@users.labs.libre-entreprise.org