Package org.geotools.feature.collection
Class AbstractFeatureVisitor
- Object
-
- AbstractFeatureVisitor
-
- All Implemented Interfaces:
FeatureVisitor
public abstract class AbstractFeatureVisitor extends Object implements FeatureVisitor
An abstract class to reduce the amount of work needed when working with FeatureVisitor.This class is best used when making anonymous inner classes:
features.accepts(new AbstractFeatureVisitor(){ public void visit( org.opengis.feature.Feature feature ) { bounds.include(feature.getBounds()); } }, null);
- Author:
- Jody Garnett
-
-
Constructor Summary
Constructors Constructor Description AbstractFeatureVisitor()
-
Method Summary
-
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface FeatureVisitor
visit
-
-