Package com.esri.gpt.catalog.discovery

Examples of com.esri.gpt.catalog.discovery.DiscoveryClause


      LOGGER.finer("Parsing ogc:Filter....");
      filter.setRootClause(new LogicalAnd());
      LogicalClause rootClause = filter.getRootClause();
      this.parseLogicalClause(filterNode,xpath,rootClause);
      if (rootClause.getClauses().size() == 1) {
        DiscoveryClause onlySubClause = rootClause.getClauses().get(0);
        if (onlySubClause instanceof LogicalClause) {
          LogicalClause onlyLogicalSubClause = (LogicalClause) onlySubClause;
          filter.setRootClause(onlyLogicalSubClause);
        }
      }
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.discovery.DiscoveryClause

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.