Example #1
0
 protected TextValidator(TextData text, ICollection list, String self)
 {
     Debug.Assert(text != null);
     Debug.Assert(list != null);
     this.text = text;
     this.list = list;
     this.self = self;
     Hook(text);
 }
Example #2
0
 protected internal FindTextValidator(TextData text)
 {
     Debug.Assert(text != null);
     this.text = text;
     Hook(text);
 }
Example #3
0
 protected internal InsertTextValidator(TextData text, ICollection list, String self)
     : base(text, list, self)
 {
     Validate();
 }
Example #4
0
 protected internal EditTextValidator(TextData text, ICollection list, String self)
     : base(text, list, self)
 {
     this.index = IndexOf(this.list, this.text.Text);
     Debug.Assert(this.index >= 0);
     Validate();
 }