public interface ParameterSetCtrl extends Controller
The ParameterSetCtrl
interface ...
This interface defines the controller as known from the MVC pattern. Its purpose is to provide write access to the data stored in the model.
Modifier and Type | Method and Description |
---|---|
Parameter |
add(java.lang.String name,
java.lang.String value)
Creates a new parameter and adds it to the set
|
void |
remove(Parameter parameter)
Removes the given parameter from the set
|
Parameter |
remove(java.lang.String name)
Removes the parameter with the given name
from the set
|
Parameter add(java.lang.String name, java.lang.String value)
name
- the name of the new parametervalue
- the value of the new parameterParameter remove(java.lang.String name)
name
- the name of the parameter to be removedvoid remove(Parameter parameter)
parameter
- the parameter to be removedCopyright © 2003-2013 . All Rights Reserved.