All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geoserver.feature.DecoratingFeatureCollection Maven / Gradle / Ivy

The newest version!
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
 * This code is licensed under the GPL 2.0 license, availible at the root
 * application directory.
 */
package org.geoserver.feature;

import org.geotools.feature.FeatureCollection;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;


/**
 * Base class for a feature collection with decorates another feature collection.
 * 

* Subclasses should override methods as needed to "decorate" . *

* * @author Justin Deoliveira, The Open Planning Project, [email protected] * @deprecated use {@link org.geotools.feature.collection.DecoratingFeatureCollection}. */ public class DecoratingFeatureCollection extends org.geotools.feature.collection.DecoratingFeatureCollection { public DecoratingFeatureCollection(FeatureCollection delegate) { super( delegate ); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy