ScannerFactory
Scanner
/// <summary> /// Constructor for the <c>Support</c> object. This will /// create a support object with the matcher and filter provided. /// This allows the user to override the transformations that /// are used to convert types to strings and back again. /// </summary> /// <param name="filter"> /// this is the filter to use with this support /// </param> /// <param name="matcher"> /// this is the matcher used for transformations /// </param> public Support(Filter filter, Matcher matcher) { this.transform = new Transformer(matcher); this.factory = new ScannerFactory(); this.creator = new Instantiator(); this.matcher = matcher; this.filter = filter; }