Example #1
0
 public RenameEntityCommand(SBase entity, String oldID, String newID, Model.SBML.Model model)
 {
     this.entity = entity;
     this.oldID = oldID;
     this.newID = newID;
     this.model = model;
 }
Example #2
0
 public ParameterCommand(Parameter parameter, Reaction parentReaction, Model.SBML.Model model)
 {
     this.parameter = parameter;
     this.parentReaction = parentReaction;
     this.model = model;
 }
Example #3
0
 public SpeciesCommand(Species species, bool adding, Model.SBML.Model model)
 {
     this.species = species;
     this.adding = adding;
     this.model = model;
 }
Example #4
0
 public ReactionCommand(Reaction reaction, bool adding, Model.SBML.Model model)
 {
     this.reaction = reaction;
     this.adding = adding;
     this.model = model;
 }
Example #5
0
 public ComponentBaseCommand(ComponentBase component, bool adding, Model.SBML.Model model)
 {
     this.component = component;
     this.adding = adding;
     this.model = model;
 }
 public RearrangeThread(GraphLayoutManager rearranger, Model.SBML.Model model, IDrawingInterface drawable)
 {
     this.rearranger = rearranger;
     this.model = model;
     this.drawable = drawable;
 }