Package model.devscore.couplings

Examples of model.devscore.couplings.MultiCouplingTargetList


   *          the ident
   * @param target
   *          the target
   */
  public void addToCoupling(String ident, MultiCouplingTarget target) {
    MultiCouplingTargetList mctl = new MultiCouplingTargetList();
    mctl.addTarget(target);
    addToCoupling(ident, mctl);
  }
View Full Code Here


   *          the ident
   * @param target
   *          the target
   */
  public void removeFromCoupling(String ident, MultiCouplingTarget target) {
    MultiCouplingTargetList mctl = new MultiCouplingTargetList();
    mctl.addTarget(target);
    removeFromCoupling(ident, mctl);
  }
View Full Code Here

      IBasicDEVSModel context, String ident, IBasicDEVSModel targetModel,
      String targetPort, ISelector<IBasicDEVSModel> selector, boolean add) {
    super(source, context, source, new Port(DUMMY, Object.class), add);
    this.ident = ident;
    // this.model1 = source;
    this.model2 = new MultiCouplingTargetList();
    this.model2.addTarget(new MultiCouplingTarget(targetModel, targetPort));
    this.change = true;
    this.selector = selector;
  }
View Full Code Here

      IBasicDEVSModel targetModel, String targetPort,
      ISelector<IBasicDEVSModel> selector, boolean add) {
    super(source, source, new Port(DUMMY, Object.class), add);
    this.ident = ident;
    // this.model1 = source;
    this.model2 = new MultiCouplingTargetList();
    this.model2.addTarget(new MultiCouplingTarget(targetModel, targetPort));
    this.change = true;
    this.selector = selector;
  }
View Full Code Here

  public MultiCouplingChangeRequest(IBasicDEVSModel source, String ident,
      MultiCouplingTarget target, boolean add) {
    super(source, source, new Port(DUMMY, Object.class), add);
    this.ident = ident;
    this.change = true;
    this.model2 = new MultiCouplingTargetList();
    model2.addTarget(target);
  }
View Full Code Here

TOP

Related Classes of model.devscore.couplings.MultiCouplingTargetList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.