Author: tchemit Date: 2008-02-26 22:11:08 +0000 (Tue, 26 Feb 2008) New Revision: 37 Modified: trunk/analyseplans/Calibration.java Log: #1605 : add import and annotation Doc on params Modified: trunk/analyseplans/Calibration.java =================================================================== --- trunk/analyseplans/Calibration.java 2008-02-26 22:10:44 UTC (rev 36) +++ trunk/analyseplans/Calibration.java 2008-02-26 22:11:08 UTC (rev 37) @@ -26,6 +26,7 @@ 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) /** * Calibration_bidon.java * @@ -43,14 +44,20 @@ static private Log log = LogFactory.getLog(Calibration.class); enum State {STATE_INIT, STATE_0, STATE_1, STATE_2, STATE_3, STATE_4}; - + //parametres de la simu 3 points initiaux d un simplex d ordre 2 + @Doc(value="do the doc of param Population") public Population param_Population = null; + @Doc(value="do the doc of param M1 (devient un parametre du plan d analyse)") public String param_M1 = "1e-5;1e-6";// devient un parametre du plan d analyse + @Doc(value="do the doc of param M2 (devient un parametre du plan d analyse)") public String param_M2 = "2e-4;2e-5";// devient un parametre du plan d analyse + @Doc(value="do the doc of param M3 (devient un parametre du plan d analyse)") public String param_M3 = "1e-4;1e-6";// devient un parametre du plan d analyse + @Doc(value="do the doc of param pas (devient un parametre du plan d analyse)") public String param_pas = "1e-5";// devient un parametre du plan d analyse + @Doc(value="nom + chemin du fichier contenant les debarquements observes par groupe pour la derniere annee") public String param_nomfichier_debarquements = "";//nom + chemin du fichier contenant les debarquements observes par groupe pour la derniere annee protected File debarquementsObserves;
participants (1)
-
tchemit@users.labs.libre-entreprise.org