Пример #1
0
 /**
  * Removes a parameter from the table.
  *
  * @param par the parameter name
  */
 public void removeParameter(String par) {
   table.setValue(par, null);
 }
Пример #2
0
 /**
  * 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));
 }
Пример #3
0
 /**
  * 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);
 }
Пример #4
0
 /**
  * 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));
 }
Пример #5
0
 /**
  * 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);
 }