Ejemplo n.º 1
0
 public void Remove( INotificationInterest listener )
 {
     this.notifier.Remove( listener );
 }
Ejemplo n.º 2
0
 public void Remove( INotificationInterest listener )
 {
     if ( this.listeners.Contains( listener ) )
     {
         this.listeners.Remove( listener );
     }
 }
Ejemplo n.º 3
0
 public void Add( INotificationInterest listener )
 {
     this.notifier.Add( listener );
 }
Ejemplo n.º 4
0
 public void Add( INotificationInterest listener )
 {
     if ( this.listeners.Contains( listener ) )
     {
         return;
     }
     this.listeners.Add( listener );
 }