Ejemplo n.º 1
0
 public PasswordValidator(StringChecker Checker)
 {
     this.checker = Checker;
     this.next    = Checker;
 }
Ejemplo n.º 2
0
 public void SetNextChecker(StringChecker next)
 {
     this.next.SetNext(next);
     this.next = next;
 }
Ejemplo n.º 3
0
 public void SetNext(StringChecker next)
 {
     this.next = next;
 }