Package org.geomajas.sld

Examples of org.geomajas.sld.UserStyleInfo


    }
    if (namedLayerInfo == null) {
      throw new LayerException(ExceptionCode.INVALID_SLD, styledLayerDescriptorInfo.getName(), layerName);
    }

    UserStyleInfo userStyleInfo = null;
    for (NamedLayerInfo.ChoiceInfo choice : namedLayerInfo.getChoiceList()) {
      // we only support user styles, pick the right name or the first
      if (choice.ifUserStyle()) {
        if (styleName != null) {
          if (styleName.equals(choice.getUserStyle().getName())) {
View Full Code Here

TOP

Related Classes of org.geomajas.sld.UserStyleInfo

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.