Package model.devscore.couplings

Examples of model.devscore.couplings.MultiCouplingTargetList.addTarget()


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

  /**
   * Add the targets specified in the targets parameter to the coupling
View Full Code Here


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

  /**
   * Remove the targets specified in the targets parameter from the coupling
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.