Class ReactionElement
- java.lang.Object
-
- bio.singa.simulation.reactions.reactors.ReactionElement
-
public class ReactionElement extends Object
-
-
Constructor Summary
Constructors Constructor Description ReactionElement()ReactionElement(List<ComplexEntity> substrates, List<ComplexEntity> products)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReactionElementcreateOneToOne(ComplexEntity substrate, ComplexEntity product)static ReactionElementcreateOneToTwo(ComplexEntity substrate, ComplexEntity primaryProduct, ComplexEntity secondaryProduct)static ReactionElementcreateTwoToOne(ComplexEntity primarySubstrate, ComplexEntity secondarySubstrate, ComplexEntity product)booleanequals(Object o)List<ComplexEntity>getProducts()List<ComplexEntity>getSubstrates()inthashCode()voidsetProducts(List<ComplexEntity> products)voidsetSubstrates(List<ComplexEntity> substrates)StringtoString()
-
-
-
Constructor Detail
-
ReactionElement
public ReactionElement()
-
ReactionElement
public ReactionElement(List<ComplexEntity> substrates, List<ComplexEntity> products)
-
-
Method Detail
-
createOneToOne
public static ReactionElement createOneToOne(ComplexEntity substrate, ComplexEntity product)
-
createOneToTwo
public static ReactionElement createOneToTwo(ComplexEntity substrate, ComplexEntity primaryProduct, ComplexEntity secondaryProduct)
-
createTwoToOne
public static ReactionElement createTwoToOne(ComplexEntity primarySubstrate, ComplexEntity secondarySubstrate, ComplexEntity product)
-
getSubstrates
public List<ComplexEntity> getSubstrates()
-
setSubstrates
public void setSubstrates(List<ComplexEntity> substrates)
-
getProducts
public List<ComplexEntity> getProducts()
-
setProducts
public void setProducts(List<ComplexEntity> products)
-
-