public RangeFacet(object _limit, RangeChecker _checker, DatatypeImpl _super) : base(_super)
        {
            comparator = _super.GetComparator();
            if (comparator == null)
            {
                // TODO: localization
                throw new DatatypeException();
            }

            limit      = _limit;
            rangeCheck = _checker;
        }
示例#2
0
 Comparator GetComparator()
 {
     return(super.GetComparator());
 }