Interface IParameterReact
-
- All Known Implementing Classes:
ParameterReact,SetReactionCenter
public interface IParameterReactInterface for classes that generate parameters used in reactions.- Author:
- miguelrojasch
- Source code:
- main
- Belongs to CDK module:
- reaction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetValue()Get the value of the parameter.booleanisSetParameter()Get if this parameter needs to take account.voidsetParameter(boolean set)Set the parameter to take account.voidsetValue(Object value)Set the value of the parameter.
-
-
-
Method Detail
-
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
void setValue(Object value)
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
-
-