Author: tchemit Date: 2008-02-26 22:10:23 +0000 (Tue, 26 Feb 2008) New Revision: 35 Modified: trunk/rules/TACpoids.java Log: #1605 : add import and annotation Doc on params Modified: trunk/rules/TACpoids.java =================================================================== --- trunk/rules/TACpoids.java 2008-02-26 22:10:04 UTC (rev 34) +++ trunk/rules/TACpoids.java 2008-02-26 22:10:23 UTC (rev 35) @@ -30,6 +30,8 @@ import fr.ifremer.isisfish.types.Date; import fr.ifremer.isisfish.types.Month; +import fr.ifremer.isisfish.util.Doc; // pour pouvoir afficher une aide contextuelle (BUG#1605) + /** * TAC.java * @@ -57,10 +59,15 @@ /** to use log facility, just put in your code: log.info("..."); */ static private Log log = LogFactory.getLog(TACpoids.class); + @Doc(value="do the doc of param species") public Species param_species = 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(22); + @Doc(value="do the doc of param propSurvie") public double param_propSurvie = 0; + @Doc(value="do the doc of param propTac") public double param_propTac = 0; /** TAC in tonne */