/** A Shape with straight edges (open or closed). Subclasses * will include Line, LineSegment, LinkedLineSegments, * and Polygon. * * Taken from Core Web Programming from * Prentice Hall and Sun Microsystems Press, * http://www.corewebprogramming.com/. * © 2001 Marty Hall and Larry Brown; * may be freely used or adapted. */ public abstract class StraightEdgedShape extends Shape {}