예제 #1
0
 public XslSortEvaluator(XPathExpression select, Sort [] sorterTemplates)
 {
     this.select          = select;
     this.sorterTemplates = sorterTemplates;
     PopulateConstantSorters();
     sortRunner = new XPathSorters();
 }
예제 #2
0
		public XslSortEvaluator (XPathExpression select, Sort [] sorterTemplates)
		{
			this.select = select;
			this.sorterTemplates = sorterTemplates;
			PopulateConstantSorters ();
			sortRunner = new XPathSorters ();
		}
예제 #3
0
파일: Expression.cs 프로젝트: nobled/mono
		public override void AddSort(object expr, XmlSortOrder orderSort, XmlCaseOrder orderCase, string lang, XmlDataType dataType)
		{
			if (_sorters == null)
				_sorters = new XPathSorters ();
			_sorters.Add (expr, orderSort, orderCase, lang, dataType);
		}
예제 #4
0
파일: Expression.cs 프로젝트: nobled/mono
		public override void AddSort (Object obj, IComparer cmp)
		{
			if (_sorters == null)
				_sorters = new XPathSorters ();
			_sorters.Add (obj, cmp);
		}