Author: tchemit Date: 2008-02-26 22:07:13 +0000 (Tue, 26 Feb 2008) New Revision: 30 Modified: trunk/rules/CantonnementPreSimu.java Log: #1605 : add import and annotation Doc on params Modified: trunk/rules/CantonnementPreSimu.java =================================================================== --- trunk/rules/CantonnementPreSimu.java 2008-02-26 22:06:16 UTC (rev 29) +++ trunk/rules/CantonnementPreSimu.java 2008-02-26 22:07:13 UTC (rev 30) @@ -28,6 +28,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 * @@ -44,10 +46,15 @@ /** to use log facility, just put in your code: log.info("..."); */ static private Log log = LogFactory.getLog(CantonnementPreSimu.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 enginSelective") public boolean param_enginSelective = true; + @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