package pl.wat.ms4ds.terrain.osmshp; /** * Shape: PolyLine.
*
 * polyline: consists of one or more parts.
 * part:     connected sequence of two or more points.
 *           may or may not be connected to one another.
 *           may or may not intersect one another.
 * same content as polygon.
 * possible ShapeTypes:
 *   PolyLine   (  8 ),
 *   PolyLineZ  ( 18 ),
 *   PolyLineM  ( 28 ),
 * 
* * @author jrulka * */ public class ShpPolyLine extends ShpPolyShape { public ShpPolyLine(Type shape_type) { super(shape_type); } }