public bool TypeMatches(FilterSetTypeFilters t)
 {
     return(this.TypeFIlter.Matches(t));
 }
 private bool TypeMatches(HllFileInfo hfi, FilterSetTypeFilters tf)
 {
     return(hfi.Type.Matches(tf));
 }
 public bool Matches(FilterSetTypeFilters other)
 {
     return((this.ty == output_doc_types.ALL) ||
            (this.ty == other.ty));
 }