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 voidaddParameter(SingleParameter sp)Adds aSingleParameterto the list.voidremoveParameter(SingleParameter sp)Removes aSingleParameterfrom the list.Methods inherited from interface org.graffiti.plugin.Displayable
getDescription, getIcon, getName, getValue, setDescription, setValue, toXMLString
-
Method Details
-
addParameter
Adds aSingleParameterto the list.- Parameters:
sp- theSingleParameterto add to the list.
-
removeParameter
Removes aSingleParameterfrom the list.- Parameters:
sp- theSingleParameterto remove from the list.
-