/** * Removes a parameter from the table. * * @param par the parameter name */ public void removeParameter(String par) { table.setValue(par, null); }
/** * Adds an initial value of a parameter to the input display. * * @param par the parameter name * @param val the initial parameter value */ public void setValue(String par, int val) { table.setValue(par, Integer.toString(val)); }
/** * Adds an initial boolean value of a parameter to the input display. * * @param par the parameter name * @param val the initial parameter value */ public void setValue(String par, boolean val) { table.setValue(par, val); }
/** * Adds an initial value of a parameter to the input display. * * @param par the parameter name * @param val the initial parameter value */ public void setValue(String par, double val) { table.setValue(par, Double.toString(val)); }
/** * Adds a parameter to the input display. * * @param par the parameter name * @param val the initial parameter value */ public void setValue(String par, Object val) { table.setValue(par, val); }