com.partnersoft.v3x.io.formats.shapefile
Class DebugShapefileActor

java.lang.Object
  extended by com.partnersoft.v3x.io.formats.shapefile.DebugShapefileActor
All Implemented Interfaces:
ShapefileActor

public class DebugShapefileActor
extends java.lang.Object
implements ShapefileActor

Handy debugging actor that just spits out text descriptions of shapefiles encountered.


Constructor Summary
DebugShapefileActor()
           
 
Method Summary
 void boundingBox(DoubleRectangle boundingBox)
          Act on the global extents.
static void main(java.lang.String[] argv)
           
 void multipointRecord(ShapefileMultipoint multipoint)
          Act on a multipoint 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DebugShapefileActor

public DebugShapefileActor()
Method Detail

main

public static void main(java.lang.String[] argv)

boundingBox

public void boundingBox(DoubleRectangle boundingBox)
Act on the global extents.

Specified by:
boundingBox in interface ShapefileActor

pointRecord

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

Specified by:
pointRecord in interface ShapefileActor

multipointRecord

public void multipointRecord(ShapefileMultipoint multipoint)
Act on a multipoint record.

Specified by:
multipointRecord in interface ShapefileActor

polygonRecord

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

Specified by:
polygonRecord in interface ShapefileActor

polylineRecord

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

Specified by:
polylineRecord in interface ShapefileActor

profile

public void profile(ShapefileProfile profile)
Act on the profile.

Specified by:
profile in interface ShapefileActor