Class NodeBehavior
- java.lang.Object
-
- bio.singa.simulation.model.modules.concentration.imlementations.reactions.behaviors.deltas.NodeBehavior
-
- All Implemented Interfaces:
DeltaBehavior
public class NodeBehavior extends Object implements DeltaBehavior
- Author:
- cl
-
-
Constructor Summary
Constructors Constructor Description NodeBehavior(ReactionEvent event)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ReactantConcentration>collectReactants(Collection<Reactant> reactants)List<ReactantDelta>generateDeltas(List<Reactant> reactants, double velocity)List<Reactant>getCatalysts()List<Reactant>getProducts()List<Reactant>getSubstrates()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface bio.singa.simulation.model.modules.concentration.imlementations.reactions.behaviors.deltas.DeltaBehavior
collectCatalysts, collectProducts, collectSubstrates, containsSubstrates, generateProductDeltas, generateSubstrateDeltas
-
-
-
-
Constructor Detail
-
NodeBehavior
public NodeBehavior(ReactionEvent event)
-
-
Method Detail
-
getSubstrates
public List<Reactant> getSubstrates()
- Specified by:
getSubstratesin interfaceDeltaBehavior
-
getProducts
public List<Reactant> getProducts()
- Specified by:
getProductsin interfaceDeltaBehavior
-
getCatalysts
public List<Reactant> getCatalysts()
- Specified by:
getCatalystsin interfaceDeltaBehavior
-
collectReactants
public List<ReactantConcentration> collectReactants(Collection<Reactant> reactants)
- Specified by:
collectReactantsin interfaceDeltaBehavior
-
generateDeltas
public List<ReactantDelta> generateDeltas(List<Reactant> reactants, double velocity)
- Specified by:
generateDeltasin interfaceDeltaBehavior
-
-