com.partnersoft.io.formats.shapefile
Interface ShapefileActor

All Known Implementing Classes:
DefaultShapefileActor

public interface ShapefileActor

An interface for objects that take actions based on the data from a ShapefileReader.

Author:
Paul Reavis Copyright 1999 Partner Software, Inc.

Method Summary
 void boundingBox(Rectangle boundingBox)
          Act on the global extents.
 void multipointRecord(ShapefileMultipoint point)
          Act on a point record.
 void pointRecord(ShapefilePoint point)
          Act on a point record.
 void polygonRecord(ShapefilePolygon polygon)
          Act on a polygon record.
 void polylineRecord(ShapefilePolyline polyline)
          Act on a polyline record.
 void profile(ShapefileProfile profile)
          Act on the profile.
 

Method Detail

boundingBox

void boundingBox(Rectangle boundingBox)
Act on the global extents.


pointRecord

void pointRecord(ShapefilePoint point)
Act on a point record.


multipointRecord

void multipointRecord(ShapefileMultipoint point)
Act on a point record.


polygonRecord

void polygonRecord(ShapefilePolygon polygon)
Act on a polygon record.


polylineRecord

void polylineRecord(ShapefilePolyline polyline)
Act on a polyline record.


profile

void profile(ShapefileProfile profile)
Act on the profile.