Package org.geomajas.sld.filter

Examples of org.geomajas.sld.filter.UnaryLogicOpTypeInfo


    return null;
  }

  private String toLogic(LogicOpsTypeInfo logicOps, FeatureInfo featureInfo) {
    if (logicOps instanceof UnaryLogicOpTypeInfo) {
      UnaryLogicOpTypeInfo unary = (UnaryLogicOpTypeInfo) logicOps;
      if (unary.ifComparisonOps()) {
        return "NOT " + toComparison(unary.getComparisonOps(), featureInfo);
      } else if (unary.ifLogicOps()) {
        return "NOT " + toLogic(unary.getLogicOps(), featureInfo);
      } else if (unary.ifSpatialOps()) {
        return "NOT " + toSpatial(unary.getSpatialOps());
      }

    } else if (logicOps instanceof BinaryLogicOpTypeInfo) {
      BinaryLogicOpTypeInfo binary = (BinaryLogicOpTypeInfo) logicOps;
      String[] expressions = new String[2];
View Full Code Here

TOP

Related Classes of org.geomajas.sld.filter.UnaryLogicOpTypeInfo

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.