org.geotools.feature.collection
Class AbstractFeatureVisitor

java.lang.Object
  extended by org.geotools.feature.collection.AbstractFeatureVisitor
All Implemented Interfaces:
org.opengis.feature.FeatureVisitor

public abstract class AbstractFeatureVisitor
extends java.lang.Object
implements org.opengis.feature.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
AbstractFeatureVisitor()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.opengis.feature.FeatureVisitor
visit
 

Constructor Detail

AbstractFeatureVisitor

public AbstractFeatureVisitor()


Copyright © 1996-2010 Geotools. All Rights Reserved.