01: /***********************************************************************************************
02: * File Info: $Id: PolyMapArea.java,v 1.2 2004/05/31 16:24:57 nathaniel_auvil Exp $
03: * Copyright (C) 2001
04: * Author: Nathaniel G. Auvil
05: * Contributor(s):
06: *
07: * Copyright 2002 (C) Nathaniel G. Auvil. All Rights Reserved.
08: *
09: * Redistribution and use of this software and associated documentation
10: * ("Software"), with or without modification, are permitted provided
11: * that the following conditions are met:
12: *
13: * 1. Redistributions of source code must retain copyright
14: * statements and notices. Redistributions must also contain a
15: * copy of this document.
16: *
17: * 2. Redistributions in binary form must reproduce the
18: * above copyright notice, this list of conditions and the
19: * following disclaimer in the documentation and/or other
20: * materials provided with the distribution.
21: *
22: * 3. The name "jCharts" or "Nathaniel G. Auvil" must not be used to
23: * endorse or promote products derived from this Software without
24: * prior written permission of Nathaniel G. Auvil. For written
25: * permission, please contact nathaniel_auvil@users.sourceforge.net
26: *
27: * 4. Products derived from this Software may not be called "jCharts"
28: * nor may "jCharts" appear in their names without prior written
29: * permission of Nathaniel G. Auvil. jCharts is a registered
30: * trademark of Nathaniel G. Auvil.
31: *
32: * 5. Due credit should be given to the jCharts Project
33: * (http://jcharts.sourceforge.net/).
34: *
35: * THIS SOFTWARE IS PROVIDED BY Nathaniel G. Auvil AND CONTRIBUTORS
36: * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
37: * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
38: * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
39: * jCharts OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
40: * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
41: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
42: * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44: * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46: * OF THE POSSIBILITY OF SUCH DAMAGE.
47: ************************************************************************************************/package org.krysalis.jcharts.imageMap;
48:
49: import java.io.Serializable;
50:
51: /*****************************************************************************************
52: *
53: *
54: ******************************************************************************************/
55: public final class PolyMapArea extends ImageMapArea implements
56: Serializable {
57:
58: /***************************************************************************************
59: *
60: * @param numberOfPoints
61: * @param value
62: * @param xAxisLabel
63: * @param legendLabel
64: ****************************************************************************************/
65: public PolyMapArea(int numberOfPoints, double value,
66: String xAxisLabel, String legendLabel) {
67: super (numberOfPoints, value, xAxisLabel, legendLabel);
68: }
69:
70: /***************************************************************************************
71: * Adds the x, y coordinate at the specified index. Not added as a Point Object so we
72: * can avoid uneeded Object creation/destruction overhead.
73: *
74: * @param index
75: * @param x
76: * @param y
77: ****************************************************************************************/
78: public void addCoordinate(int index, float x, float y) {
79: super .x[index] = (int) x;
80: super .y[index] = (int) y;
81: }
82:
83: /***************************************************************************************
84: *
85: * @return AreaShape
86: ****************************************************************************************/
87: public AreaShape getAreaShape() {
88: return AreaShape.POLYGON;
89: }
90:
91: }
|