Provides Feature based locking.
Features from individual shapefiles, database tables, etc. can be protected
or reserved from modification through this interface.
To use please cast your FeatureSource to this interface.
FeatureSource source = dataStore.getFeatureSource("roads");
if( source instanceof FeatureLocking ) {
FeatureLocking locking = (FeatureLocking) source;
...
}
author: Jody Garnett, Refractions Research, Inc. author: Ray Gallagher author: Rob Hranac, TOPP author: Chris Holmes, TOPP version: $Id: FeatureLocking.java 22600 2006-11-04 09:37:58Z jgarnett $
|