Esempio n. 1
0
 /**
  * removes a parameter to the list of parameters that will be passed to a class/object etc. that
  * represents a module
  *
  * @param name
  */
 public void removeParameter(String name) {
   parameterList.removeParameter(name);
 }
Esempio n. 2
0
 /**
  * adds a parameter to the list of parameters that will be passed to a class/object etc. that
  * represents a module
  *
  * @param parameter
  */
 public void addParameter(Parameter parameter) {
   parameterList.addParameter(parameter);
 }