Cream.AllenTemporal.AllenVariable.OverlappedBy C# (CSharp) Méthode

OverlappedBy() public méthode

public OverlappedBy ( AllenVariable v ) : void
v AllenVariable
Résultat void
        public virtual void OverlappedBy(AllenVariable v)
        {
            Network net = Network;
            // this overlapped By v
            if (this != v)
            {
                new AllenConstraint(net, AllenEvents.OVERLAPPEDBY, this, v);
            }
            else
            {
                throw new NotImplementedException("Variable cannot event itself!!");
            }
        }