Interface IParameterReact
- All Known Implementing Classes:
ParameterReact
,SetReactionCenter
public interface IParameterReact
Interface for classes that generate parameters used in reactions.
- Author:
- miguelrojasch
- Source code:
- main
- Belongs to CDK module:
- reaction
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Get the value of the parameter.boolean
Get if this parameter needs to take account.void
setParameter
(boolean set) Set the parameter to take account.void
Set 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
-