public AddPOSSequenceFunction(FrenchTreebankParserParams _enclosing, string annotationMark, int cutoff, bool basicCategory)
 {
     this._enclosing     = _enclosing;
     this.annotationMark = annotationMark;
     this.doBasicCat     = basicCategory;
     this.cutoff         = cutoff;
 }
 public AddRelativeNodeFunction(FrenchTreebankParserParams _enclosing, string annotationMark, string key, bool basicCategory)
 {
     this._enclosing     = _enclosing;
     this.annotationMark = annotationMark;
     this.key            = key;
     this.key2           = null;
     this.doBasicCat     = basicCategory;
 }
 public AddRelativeNodeFunction(FrenchTreebankParserParams _enclosing, string annotationMark, string key1, bool basicCategory, bool toLower)
     : this(annotationMark, key1, basicCategory)
 {
     this._enclosing = _enclosing;
     this.toLower    = toLower;
 }