Author: tchemit Date: 2008-02-26 22:09:46 +0000 (Tue, 26 Feb 2008) New Revision: 33 Modified: trunk/rules/InterdictionEnginPreSimu.java Log: #1605 : add import and annotation Doc on params Modified: trunk/rules/InterdictionEnginPreSimu.java =================================================================== --- trunk/rules/InterdictionEnginPreSimu.java 2008-02-26 22:09:23 UTC (rev 32) +++ trunk/rules/InterdictionEnginPreSimu.java 2008-02-26 22:09:46 UTC (rev 33) @@ -27,6 +27,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 * @@ -43,8 +45,11 @@ /** to use log facility, just put in your code: log.info("..."); */ static private Log log = LogFactory.getLog(InterdictionEnginPreSimu.class); + @Doc(value="do the doc of param gear") public Gear param_gear = null; + @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; protected Map<Month, MatrixND> tableNonActivite = new HashMap<Month, MatrixND>();
participants (1)
-
tchemit@users.labs.libre-entreprise.org