示例#1
0
		public BundleDocumenter (Assembly assy, string docpath) {
			this.assy = assy;
			this.docpath = docpath;

			assy_vers = assy.GetName ().Version.ToString ();

			result = new ResultDocumenter (this);
			provider = new ProviderDocumenter (this);
			rule = new RuleDocumenter (this);
			regex = new RegexMatcherDocumenter (this);
			matcher = new MatcherDocumenter (this);
		}
示例#2
0
        public BundleDocumenter(Assembly assy, string docpath)
        {
            this.assy    = assy;
            this.docpath = docpath;

            assy_vers = assy.GetName().Version.ToString();

            result   = new ResultDocumenter(this);
            provider = new ProviderDocumenter(this);
            rule     = new RuleDocumenter(this);
            regex    = new RegexMatcherDocumenter(this);
            matcher  = new MatcherDocumenter(this);
        }