01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2004-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; either
09: * version 2.1 of the License, or (at your option) any later version.
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: * Created on April 15, 2004, 11:50 AM
17: */
18:
19: package org.geotools.renderer.lite;
20:
21: /**
22: *
23: * @author jfc173
24: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/render/src/main/java/org/geotools/renderer/lite/GlyphProperty.java $
25: */
26: public class GlyphProperty {
27:
28: private String name;
29: private Class type;
30: private Object value;
31:
32: /** Creates a new instance of GlyphProperty */
33: public GlyphProperty(String s, Class c, Object o) {
34: name = s;
35: type = c;
36: value = o;
37: }
38:
39: public String getName() {
40: return name;
41: }
42:
43: public Class getType() {
44: return type;
45: }
46:
47: public Object getValue() {
48: return value;
49: }
50:
51: public void setValue(Object v) {
52: value = v;
53: }
54:
55: }
|