예제 #1
0
 public void AddReferencedConstraint(IConstraintNode constraintNode)
 {
     if (!this.ReferencedConstraints.Contains(constraintNode))
     {
         this.ReferencedConstraints.Add(constraintNode);
     }
 }
예제 #2
0
 public void RemoveReferencedConstraint(IConstraintNode constraintNode)
 {
     this._referencableProxy.RemoveReferencedConstraint(constraintNode);
 }
예제 #3
0
 public void RemoveReferencedConstraint(IConstraintNode constraintNode)
 {
     this.ReferencedConstraints.Remove(constraintNode);
 }