/** * */ package ie.dcu.apps.ist.export.imagemap; /** * The shape of the area tag for a HTML image map. * * @see HTML 4 DTD * * @author Kevin McGuinness */ public enum AreaShape { Polygon("poly"), Rectangle("rect"), Circle("circle"); private String text; private AreaShape(String text) { this.text = text; } /** * Returns the HTML shape attribute value. */ public String toString() { return text; } }