Interface IParameterReact
- All Known Implementing Classes:
ParameterReact,SetReactionCenter
public interface IParameterReact
Interface for classes that generate parameters used in reactions.
- Author:
- miguelrojasch
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()Get the value of the parameter.booleanGet if this parameter needs to take account.voidsetParameter(boolean set) Set the parameter to take account.voidSet the value of the parameter.
-
Method Details
-
setParameter
void setParameter(boolean set) Set the parameter to take account.- Parameters:
set- True, if the parameter needs to take account
-
isSetParameter
boolean isSetParameter()Get if this parameter needs to take account.- Returns:
- True, if the parameter needs to take account
-
setValue
Set the value of the parameter.- Parameters:
value- The value of the parameter
-
getValue
Object getValue()Get the value of the parameter.- Returns:
- The value of the parameter
-