Uses of Interface
org.geotools.data.FeatureSource

Packages that use FeatureSource
org.geotools.arcsde.data DataStore implementation for the ArcSDE 8.x and 9.x spatial gateway. 
org.geotools.caching.featurecache   
org.geotools.caching.grid.featurecache   
org.geotools.caching.grid.featurecache.readers   
org.geotools.data Defines the DataStoreAPI via which all data is imported or exported. 
org.geotools.data.complex This package contains the implementation of a ComplexDataStore
org.geotools.data.complex.xml   
org.geotools.data.dir Directory DataStore 
org.geotools.data.directory   
org.geotools.data.gen   
org.geotools.data.jdbc   
org.geotools.data.oracle   
org.geotools.data.postgis   
org.geotools.data.postgis.synch   
org.geotools.data.property   
org.geotools.data.shapefile   
org.geotools.data.store   
org.geotools.data.view   
org.geotools.data.wfs.v1_0_0   
org.geotools.data.wfs.v1_1_0   
org.geotools.demo.example   
org.geotools.map List of layers to be rendered. 
org.geotools.validation Defines the Validation Processor and Support classes. 
 

Uses of FeatureSource in org.geotools.arcsde.data
 

Classes in org.geotools.arcsde.data that implement FeatureSource
 class ArcSdeFeatureSource
           
 class ArcSdeFeatureStore
           
 

Methods in org.geotools.arcsde.data that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ArcSDEDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
          Delegates to ArcSDEDataStore.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ArcSDEDataStore.getFeatureSource(java.lang.String typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ArcSDEDataStore.getView(Query query)
           
 

Uses of FeatureSource in org.geotools.caching.featurecache
 

Subinterfaces of FeatureSource in org.geotools.caching.featurecache
 interface FeatureCache
          Interface for a feature cache.
 

Classes in org.geotools.caching.featurecache that implement FeatureSource
 class AbstractFeatureCache
          Abstract implementation of a feature cache.
 

Fields in org.geotools.caching.featurecache declared as FeatureSource
protected  FeatureSource AbstractFeatureCache.fs
           
 

Constructors in org.geotools.caching.featurecache with parameters of type FeatureSource
AbstractFeatureCache(FeatureSource fs)
          Creates a new feature cache from the given feature source.
 

Uses of FeatureSource in org.geotools.caching.grid.featurecache
 

Classes in org.geotools.caching.grid.featurecache that implement FeatureSource
 class GridFeatureCache
          An implementation of a feature cache.
 class StreamingGridFeatureCache
          Implementation of a GridFeatureCache that uses streaming feature collections.
 

Methods in org.geotools.caching.grid.featurecache with parameters of type FeatureSource
protected static ReferencedEnvelope GridFeatureCache.getFeatureBounds(FeatureSource fs)
          Private function used to get the bounds of a feature collection and convert the IOException to a FeatureCacheException
 

Constructors in org.geotools.caching.grid.featurecache with parameters of type FeatureSource
GridFeatureCache(FeatureSource fs, int indexcapacity, int capacity, Storage store)
           
GridFeatureCache(FeatureSource fs, ReferencedEnvelope env, int gridsize, int capacity, Storage store)
          Creates a new grid feature cache.
StreamingGridFeatureCache(FeatureSource fs, int indexcapacity, int capacity, Storage store)
           
StreamingGridFeatureCache(FeatureSource fs, ReferencedEnvelope env, int indexcapacity, int capacity, Storage store)
           
 

Uses of FeatureSource in org.geotools.caching.grid.featurecache.readers
 

Constructors in org.geotools.caching.grid.featurecache.readers with parameters of type FeatureSource
GridCachingFeatureCollection(org.opengis.filter.spatial.BBOX preFilter, org.opengis.filter.Filter postFilter, GridFeatureCache g, FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> fs, boolean cacheFeatures)
          Creates a feature collection that will first read items from the cache then read any missing items from the feature source.
GridCachingFeatureCollection(org.opengis.filter.spatial.BBOX preFilter, Query query, GridFeatureCache g, FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> fs, boolean cacheFeatures)
          Creates a feature collection that will first read itmes from the cache and then read missing items from the feature source.
 

Uses of FeatureSource in org.geotools.data
 

Subinterfaces of FeatureSource in org.geotools.data
 interface FeatureLocking<T extends FeatureType,F extends Feature>
          Provides Feature based locking.
 interface FeatureStore<T extends FeatureType,F extends Feature>
          Provides storage of data for Features.
 interface VersioningFeatureLocking
          Feature locking with versioning capabilities.
 interface VersioningFeatureSource
          Extension to feature source to provide the read only methods needed to work against a versioned data store.
 interface VersioningFeatureStore
          Versioning feature store, provides rollback facilities not included in standard feature stores, plus the extra methods inherited from VersioningFeatureSource
 

Classes in org.geotools.data that implement FeatureSource
 class AbstractFeatureLocking
          A Starting point for your own FeatureLocking implementations.
 class AbstractFeatureSource
          This is a starting point for providing your own FeatureSource implementation.
 class AbstractFeatureStore
          This is a starting point for providing your own FeatureStore implementation.
 class CachingFeatureSource
          A caching feature source for fast data access.
 class SampleDataAccessFeatureSource
          FeatureSource for SampleDataAccess.
 

Fields in org.geotools.data declared as FeatureSource
protected  FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultFeatureResults.featureSource
          Feature source used to aquire features, note we are only a "view" of this FeatureSource, its contents, transaction and events need to be forwarded through this collection api to simplier code such as renderers.
protected  FeatureSource FeatureEvent.featureSource
          The FeatureSource broadcasting the event.
 

Methods in org.geotools.data that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractFileDataStore.getFeatureSource()
          Singular version, calls parent with getSchema().getTypeName()
 FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> FeatureEvent.getFeatureSource()
          Provides access to the FeatureSource which fired the event.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> FileDataStore.getFeatureSource()
           
 FeatureSource<org.opengis.feature.type.FeatureType,org.opengis.feature.Feature> SampleDataAccess.getFeatureSource(org.opengis.feature.type.Name typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
          Delegates to AbstractDataStore.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<T,F> DataAccess.getFeatureSource(org.opengis.feature.type.Name typeName)
          Access to the named resource.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getFeatureSource(java.lang.String typeName)
          Default implementation based on getFeatureReader and getFeatureWriter.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataStore.getFeatureSource(java.lang.String typeName)
          Access a FeatureSource for typeName providing a high-level API.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getView(Query query)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataStore.getView(Query query)
          Access a FeatureSource for Query providing a high-level API.
static FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataUtilities.source(FeatureCollection<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> collection)
          Wrap up the provided FeatureCollection as a feature soruce; allowing queries to be performed etc...
static FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataUtilities.source(org.opengis.feature.simple.SimpleFeature[] featureArray)
          DOCUMENT ME!
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultRepository.source(java.lang.String dataStoreId, java.lang.String typeName)
           
 

Methods in org.geotools.data with parameters of type FeatureSource
 void FeatureListenerManager.addFeatureListener(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource, FeatureListener featureListener)
          Used by FeaureSource implementations to provide listener support.
 void FeatureListenerManager.cleanListenerList(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource)
           
 void FeatureListenerManager.removeFeatureListener(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource, FeatureListener featureListener)
          Used by FeatureSource implementations to provide listener support.
 void FeatureEvent.setFeatureSource(FeatureSource featureSource)
           
 

Constructors in org.geotools.data with parameters of type FeatureSource
BatchFeatureEvent(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource)
           
BatchFeatureEvent(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource, ReferencedEnvelope bounds, org.opengis.filter.Filter filter)
           
CachingFeatureSource(FeatureSource original)
           
DefaultFeatureResults(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> source, Query query)
          FeatureResults query against featureSource.
FeatureEvent(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource, int eventType, com.vividsolutions.jts.geom.Envelope bounds)
          Deprecated. Please use FeatureEvent( FeatureSource, Type, Envelope )
 

Uses of FeatureSource in org.geotools.data.complex
 

Fields in org.geotools.data.complex declared as FeatureSource
protected  FeatureSource<org.opengis.feature.type.FeatureType,org.opengis.feature.Feature> DataAccessMappingFeatureIterator.mappedSource
           
 

Methods in org.geotools.data.complex that return FeatureSource
 FeatureSource<org.opengis.feature.type.FeatureType,org.opengis.feature.Feature> AppSchemaDataAccess.getFeatureSource(org.opengis.feature.type.Name typeName)
          Return a feature source that can be used to obtain features of a particular type.
static FeatureSource<org.opengis.feature.type.FeatureType,org.opengis.feature.Feature> DataAccessRegistry.getFeatureSource(org.opengis.feature.type.Name featureTypeName)
          Get a feature source for built features with supplied feature type name.
 FeatureSource<org.opengis.feature.type.FeatureType,org.opengis.feature.Feature> AppSchemaDataAccess.getFeatureSourceByName(org.opengis.feature.type.Name typeName)
          Return a feature source that can be used to obtain features of a particular name.
static FeatureSource<org.opengis.feature.type.FeatureType,org.opengis.feature.Feature> AppSchemaDataAccessRegistry.getSimpleFeatureSource(org.opengis.feature.type.Name featureTypeName)
          Get a feature source for simple features with supplied feature type name.
 FeatureSource FeatureTypeMapping.getSource()
           
 

Methods in org.geotools.data.complex with parameters of type FeatureSource
static FeatureTypeMapping FeatureTypeMappingFactory.getInstance(FeatureSource source, org.opengis.feature.type.AttributeDescriptor target, java.util.List<AttributeMapping> mappings, org.xml.sax.helpers.NamespaceSupport namespaces, java.lang.String itemXpath, boolean isXmlDataStore)
           
 

Constructors in org.geotools.data.complex with parameters of type FeatureSource
FeatureTypeMapping(FeatureSource source, org.opengis.feature.type.AttributeDescriptor target, java.util.List<AttributeMapping> mappings, org.xml.sax.helpers.NamespaceSupport namespaces)
           
FeatureTypeMapping(FeatureSource source, org.opengis.feature.type.AttributeDescriptor target, java.util.List<AttributeMapping> mappings, org.xml.sax.helpers.NamespaceSupport namespaces, java.lang.String itemXpath)
           
XmlFeatureTypeMapping(FeatureSource source, org.opengis.feature.type.AttributeDescriptor target, java.util.List<AttributeMapping> mappings, org.xml.sax.helpers.NamespaceSupport namespaces)
           
XmlFeatureTypeMapping(FeatureSource source, org.opengis.feature.type.AttributeDescriptor target, java.util.List<AttributeMapping> mappings, org.xml.sax.helpers.NamespaceSupport namespaces, java.lang.String itemXpath)
           
 

Uses of FeatureSource in org.geotools.data.complex.xml
 

Subinterfaces of FeatureSource in org.geotools.data.complex.xml
 interface XmlFeatureSource
           
 

Uses of FeatureSource in org.geotools.data.dir
 

Methods in org.geotools.data.dir that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
          Deprecated. Delegates to DirectoryDataStore.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureSource(java.lang.String typeName)
          Deprecated.  
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getView(Query query)
          Deprecated.  
 

Uses of FeatureSource in org.geotools.data.directory
 

Classes in org.geotools.data.directory that implement FeatureSource
 class DirectoryFeatureLocking
           
 class DirectoryFeatureStore
           
 

Methods in org.geotools.data.directory that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureSource(java.lang.String typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getView(Query query)
           
 

Uses of FeatureSource in org.geotools.data.gen
 

Classes in org.geotools.data.gen that implement FeatureSource
 class PreGeneralizedFeatureSource
           
 

Methods in org.geotools.data.gen that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PreGeneralizedDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PreGeneralizedDataStore.getFeatureSource(java.lang.String typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PreGeneralizedDataStore.getView(Query query)
           
 

Methods in org.geotools.data.gen with parameters of type FeatureSource
protected  Query PreGeneralizedFeatureSource.getProxyObject(Query query, FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> fs)
           
 

Uses of FeatureSource in org.geotools.data.jdbc
 

Classes in org.geotools.data.jdbc that implement FeatureSource
 class JDBCFeatureLocking
          Deprecated. scheduled for removal in 2.7, use classes in org.geotools.jdbc
 class JDBCFeatureSource
          Deprecated. scheduled for removal in 2.7, use classes in org.geotools.jdbc
 class JDBCFeatureStore
          Deprecated. scheduled for removal in 2.7, use classes in org.geotools.jdbc
 

Methods in org.geotools.data.jdbc that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> JDBC1DataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
          Deprecated. Delegates to JDBC1DataStore.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> JDBC1DataStore.getFeatureSource(java.lang.String typeName)
          Deprecated. Default implementation based on getFeatureReader and getFeatureWriter.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> JDBC1DataStore.getView(Query query)
          Deprecated.  
 

Uses of FeatureSource in org.geotools.data.oracle
 

Classes in org.geotools.data.oracle that implement FeatureSource
 class OracleFeatureLocking
           
 class OracleFeatureSource
           
 class OracleFeatureStore
           
 

Methods in org.geotools.data.oracle that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> OracleDataStore.getFeatureSource(java.lang.String typeName)
          Default implementation based on getFeatureReader and getFeatureWriter.
 

Uses of FeatureSource in org.geotools.data.postgis
 

Classes in org.geotools.data.postgis that implement FeatureSource
 class PostgisFeatureLocking
          Extends PostgisFeatureLocking with support for Locking.
 class PostgisFeatureStore
          Implementation of a Postgis specific FeatureStore.
 class VersionedPostgisFeatureStore
          A cheap implementation of a feature locking.
 class WrappingPostgisFeatureSource
          Really delegates everything to a wrapped feature source, but allows to advertise a data store other than the original one
 

Methods in org.geotools.data.postgis that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
          Delegates to VersionedPostgisDataStore.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getFeatureSource(java.lang.String typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PostgisDataStore.getFeatureSource(java.lang.String typeName)
          Default implementation based on getFeatureReader and getFeatureWriter.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getView(Query query)
           
 

Constructors in org.geotools.data.postgis with parameters of type FeatureSource
WrappingPostgisFeatureSource(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> wrapped, VersionedPostgisDataStore store)
           
 

Uses of FeatureSource in org.geotools.data.postgis.synch
 

Methods in org.geotools.data.postgis.synch that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> SynchronizedPostgisDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> SynchronizedPostgisDataStore.getFeatureSource(java.lang.String typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> SynchronizedPostgisDataStore.getView(Query query)
           
 

Uses of FeatureSource in org.geotools.data.property
 

Classes in org.geotools.data.property that implement FeatureSource
 class PropertyFeatureSource
           
 

Methods in org.geotools.data.property that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PropertyDataStore.getFeatureSource(java.lang.String typeName)
           
 

Uses of FeatureSource in org.geotools.data.shapefile
 

Classes in org.geotools.data.shapefile that implement FeatureSource
 class ShapefileFeatureLocking
           
 class ShapefileFeatureStore
          Allows read-write access to the contents of a shape file.
 

Methods in org.geotools.data.shapefile that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ShapefileDataStore.getFeatureSource(java.lang.String typeName)
           
 

Uses of FeatureSource in org.geotools.data.store
 

Classes in org.geotools.data.store that implement FeatureSource
 class AbstractFeatureSource2
           
 class ContentFeatureSource
          Abstract implementation of FeatureSource.
 class ContentFeatureStore
          Abstract implementation of FeatureStore.
 

Methods in org.geotools.data.store that return FeatureSource
abstract  FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ActiveTypeEntry.createFeatureSource()
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> TypeEntry.createFeatureSource()
          Create a new FeatueSource allowing interaction with content.
protected  FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ActiveTypeEntry.createFeatureSource(org.opengis.feature.simple.SimpleFeatureType featureType)
          Create the FeatureSource, override for your own custom implementation.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ContentDataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
          Delegates to ContentDataStore.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore2.getFeatureSource(org.opengis.feature.type.Name typeName)
          Delegates to AbstractDataStore2.getFeatureSource(String) with name.getLocalPart()
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore2.getFeatureSource(java.lang.String typeName)
          Aqure FeatureSource for indicated typeName.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore2.getView(Query query)
          Create a FeatureSource that represents your Query.
 

Methods in org.geotools.data.store with parameters of type FeatureSource
 void ContentState.fireFeatureAdded(FeatureSource<?,?> source, org.opengis.feature.Feature feature)
          Used to issue a Type.ADDED FeatureEvent indicating a new feature being created
 void ContentState.fireFeatureRemoved(FeatureSource<?,?> source, org.opengis.feature.Feature feature)
           
 void ContentState.fireFeatureUpdated(FeatureSource<?,?> source, org.opengis.feature.Feature feature, ReferencedEnvelope before)
           
 

Uses of FeatureSource in org.geotools.data.view
 

Classes in org.geotools.data.view that implement FeatureSource
 class DefaultView
          Wrapper for FeatureSource constrained by a Query.
 

Fields in org.geotools.data.view declared as FeatureSource
protected  FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultView.source
          FeatureSource being served up
 

Methods in org.geotools.data.view that return FeatureSource
static FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultView.create(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> source, Query query)
          Factory that make the correct decorator for the provided featureSource.
 

Methods in org.geotools.data.view with parameters of type FeatureSource
static FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultView.create(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> source, Query query)
          Factory that make the correct decorator for the provided featureSource.
 

Constructors in org.geotools.data.view with parameters of type FeatureSource
DefaultView(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> source, Query query)
          Creates a new GeoServerFeatureSource object.
 

Uses of FeatureSource in org.geotools.data.wfs.v1_0_0
 

Classes in org.geotools.data.wfs.v1_0_0 that implement FeatureSource
 class WFSFeatureSource
          FeatureSource extension interface to provide WFS specific extra information.
 class WFSFeatureStore
          DOCUMENT ME!
 

Methods in org.geotools.data.wfs.v1_0_0 that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> WFS_1_0_0_DataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
           
 

Uses of FeatureSource in org.geotools.data.wfs.v1_1_0
 

Methods in org.geotools.data.wfs.v1_1_0 that return FeatureSource
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> WFS_1_1_0_DataStore.getFeatureSource(org.opengis.feature.type.Name typeName)
           
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> WFS_1_1_0_DataStore.getView(Query query)
           
 

Uses of FeatureSource in org.geotools.demo.example
 

Methods in org.geotools.demo.example with parameters of type FeatureSource
static void SLDExample.show(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> source, Style style)
           
 

Uses of FeatureSource in org.geotools.map
 

Fields in org.geotools.map declared as FeatureSource
protected  FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> FeatureSourceMapLayer.featureSource
          Holds value of property FeatureSource.
protected  FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultMapLayer.featureSource
          Holds value of property FeatureSource.
 

Methods in org.geotools.map that return FeatureSource
 FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> MapLayer.getFeatureSource()
          Get the feature collection for this layer.
 FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> FeatureSourceMapLayer.getFeatureSource()
          Getter for property featureSource.
 FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DefaultMapLayer.getFeatureSource()
          Getter for property featureSource.
 

Methods in org.geotools.map with parameters of type FeatureSource
 void MapContext.addLayer(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> featureSource, Style style)
          Add a new layer and trigger a LayerListEvent.
 void DefaultMapContext.addLayer(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> featureSource, Style style)
          Add the given feature source as a new layer to the end of the list of layers held by this context and trigger a MapLayerListEvent.
 

Constructors in org.geotools.map with parameters of type FeatureSource
DefaultMapLayer(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> featureSource, Style style)
          Creates a new instance of DefaultMapLayer
DefaultMapLayer(FeatureSource<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> featureSource, Style style, java.lang.String title)
          Creates a new instance of DefaultMapLayer
FeatureSourceMapLayer(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource, Style style)
          Convenience constructor that sets title to the empty string.
FeatureSourceMapLayer(FeatureSource<? extends org.opengis.feature.type.FeatureType,? extends org.opengis.feature.Feature> featureSource, Style style, java.lang.String title)
          Constructor
 

Uses of FeatureSource in org.geotools.validation
 

Method parameters in org.geotools.validation with type arguments of type FeatureSource
 void Validator.integrityValidation(java.util.Map<org.opengis.feature.type.Name,FeatureSource<?,?>> featureStores, ReferencedEnvelope bBox, ValidationResults results)
          Integrity validation will iterate over all data stores passed in through the stores map and run the tests associated with each store.
 



Copyright © 1996-2010 Geotools. All Rights Reserved.