Package org.geoserver.wms.featureinfo

Examples of org.geoserver.wms.featureinfo.FeatureCollectionDecorator


        if (collection != null) {
            if (!(collection.getSchema() instanceof SimpleFeatureType)) {
                // put wrapper around it with layer name
                Name name = new NameImpl(layer.getFeature().getNamespace().getName(), layer
                        .getFeature().getName());
                collection = new FeatureCollectionDecorator(name, collection);
            }

            int size = collection.size();
            if (size != 0) {
View Full Code Here

TOP

Related Classes of org.geoserver.wms.featureinfo.FeatureCollectionDecorator

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.