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