Interface Parameter
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ParameterImpl
public interface Parameter extends Serializable
Interface describing a representation of the <parameter> element of a Process Model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Get the name of the ParameterString
getValue()
Get the value of the Parametervoid
setName(String name)
Set the name of the Parametervoid
setValue(String value)
Set the value of the Parameter
-
-
-
Method Detail
-
getName
String getName()
Get the name of the Parameter- Returns:
- parameter's name
-
setName
void setName(String name)
Set the name of the Parameter- Parameters:
name
- parameter's name
-
getValue
String getValue()
Get the value of the Parameter- Returns:
- parameter's value
-
setValue
void setValue(String value)
Set the value of the Parameter- Parameters:
value
- parameter's value
-
-