Package org.graffiti.plugin.parameter
Interface ParameterList
- All Superinterfaces:
Displayable
,Parameter
public interface ParameterList extends Parameter
A
ParameterList
can be used to create enumeration type
parameters, by grouping them into a list. The list can contain any number of
SingleParameters
.- Version:
- $Revision: 1.4 $
- See Also:
SingleParameter
-
Method Summary
Modifier and Type Method Description void
addParameter(SingleParameter sp)
Adds aSingleParameter
to the list.void
removeParameter(SingleParameter sp)
Removes aSingleParameter
from the list.Methods inherited from interface org.graffiti.plugin.Displayable
getDescription, getIcon, getName, getValue, setDescription, setValue, toXMLString
-
Method Details
-
addParameter
Adds aSingleParameter
to the list.- Parameters:
sp
- theSingleParameter
to add to the list.
-
removeParameter
Removes aSingleParameter
from the list.- Parameters:
sp
- theSingleParameter
to remove from the list.
-