Ejemplo n.º 1
0
 internal void ShowAwaitingConnections(IConnectable aConnectable)
 {
     foreach (GraphElement e in FConnectables)
     {
         IConnectable c = e.Connectable;
         if ((aConnectable.ConnectableType != c.ConnectableType) && (c.CanConnectTo(aConnectable)))
         {
             c.AwaitingConnection = true;
         }
     }
 }