Package org.exist.dom

Examples of org.exist.dom.SortedNodeSet


    this.outputProperties = properties;
    this.collection = col;
    if(val.isEmpty())
      {return;}
    if(Type.subTypeOf(val.getItemType(), Type.NODE) && sortExpr != null) {
      SortedNodeSet sorted = new SortedNodeSet(brokerPool, user, sortExpr, collection.getAccessContext());
      try {
        sorted.addAll(val);
      } catch (final XPathException e) {
        throw new XMLDBException(ErrorCodes.INVALID_RESOURCE,
          e.getMessage(), e);
      }
      val = sorted;
View Full Code Here

TOP

Related Classes of org.exist.dom.SortedNodeSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.