01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.graph.util.delaunay;
17:
18: import java.util.List;
19:
20: /**
21: *
22: * @author jfc173
23: */
24: public class AutoClustData {
25:
26: double localMean;
27: double localStDev;
28: List shortEdges;
29: List longEdges;
30: List otherEdges;
31:
32: /** Creates a new instance of AutoClustData */
33: public AutoClustData() {
34: }
35:
36: public void setLocalMean(double d) {
37: localMean = d;
38: }
39:
40: public double getLocalMean() {
41: return localMean;
42: }
43:
44: public void setLocalStDev(double d) {
45: localStDev = d;
46: }
47:
48: public double getLocalStDev() {
49: return localStDev;
50: }
51:
52: public void setShortEdges(List l) {
53: shortEdges = l;
54: }
55:
56: public List getShortEdges() {
57: return shortEdges;
58: }
59:
60: public void setLongEdges(List l) {
61: longEdges = l;
62: }
63:
64: public List getLongEdges() {
65: return longEdges;
66: }
67:
68: public void setOtherEdges(List l) {
69: otherEdges = l;
70: }
71:
72: public List getOtherEdges() {
73: return otherEdges;
74: }
75: }
|