Ejemplo n.º 1
0
 public void addToucherInterne(ToucherInterne t)
 {
     lock (lockToucher) {
         if (this.etatCourant.filtreToucher(t))
         {
             this._touchers.addToucherInterne(t);
         }
     }
 }
Ejemplo n.º 2
0
 protected virtual void toucheInterne(ToucherInterne t)
 {
 }
Ejemplo n.º 3
0
 protected override void toucheInterne(ToucherInterne t)
 {
     this.addToucherInterne(t);
 }
Ejemplo n.º 4
0
 public void addToucherInterne(ToucherInterne t)
 {
     this.touchersInterne.Add(t);
 }
Ejemplo n.º 5
0
 public bool filtreToucher(ToucherInterne t)
 {
     return(filtreSurToucherInterne(t));
 }