public class Parameter
extends java.lang.Object
| Constructor and Description |
|---|
Parameter()
the constructor which initialise the fields
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equalLabelValue(Parameter parameter)
This method check if two parameter are similar (e.g. same variable and same value)
|
java.util.List<java.lang.Object> |
getListValue()
Getter on the list of value of the parameter
|
Variable |
getName()
getter on the variable
|
java.lang.Object |
getValue()
getter on the values of the parameter
|
void |
setListValue(java.util.List<java.lang.Object> listValue)
Setter on the list of value of the parameter
|
void |
setName(Variable name)
setter on the name field ( variable )
|
void |
setValue(java.lang.Object value)
setter on the value of the parameter
|
public Variable getName()
public void setName(Variable name)
name - the variable which must take the valuepublic java.lang.Object getValue()
public void setValue(java.lang.Object value)
value - the new value of the parameterpublic java.util.List<java.lang.Object> getListValue()
public void setListValue(java.util.List<java.lang.Object> listValue)
listValue - the list of all the value which must take the parameterpublic boolean equalLabelValue(Parameter parameter)
parameter - the other parameter to compare