Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / symbols / AbstractMarkerSymbol.java @ 9919

History | View | Annotate | Download (3.32 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

    
42
/* CVS MESSAGES:
43
*
44
* $Id: AbstractMarkerSymbol.java 9919 2007-01-25 16:25:23Z jaume $
45
* $Log$
46
* Revision 1.3  2007-01-25 16:25:23  jaume
47
* *** empty log message ***
48
*
49
* Revision 1.2  2007/01/16 11:50:44  jaume
50
* *** empty log message ***
51
*
52
* Revision 1.1  2007/01/10 16:31:36  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.4  2006/12/04 17:13:39  fjp
56
* *** empty log message ***
57
*
58
* Revision 1.3  2006/11/14 11:10:27  jaume
59
* *** empty log message ***
60
*
61
* Revision 1.2  2006/11/09 18:39:05  jaume
62
* *** empty log message ***
63
*
64
* Revision 1.1  2006/10/31 16:16:34  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.4  2006/10/30 19:30:35  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.3  2006/10/26 16:27:33  jaume
71
* support for composite marker symbols (not tested)
72
*
73
* Revision 1.2  2006/10/26 07:46:58  jaume
74
* *** empty log message ***
75
*
76
* Revision 1.1  2006/10/25 10:50:41  jaume
77
* movement of classes and gui stuff
78
*
79
* Revision 1.1  2006/10/18 07:54:06  jaume
80
* *** empty log message ***
81
*
82
*
83
*/
84
package com.iver.cit.gvsig.fmap.core.symbols;
85

    
86
import java.awt.Color;
87
import java.awt.Point;
88
import java.awt.geom.Point2D;
89
import java.awt.geom.Point2D.Double;
90

    
91
import com.iver.cit.gvsig.fmap.core.FShape;
92
import com.iver.cit.gvsig.fmap.core.IGeometry;
93

    
94

    
95
/**
96
 * Abstract class that any MARKER SYMBOL should extend.
97
 *
98
 * @author jaume dominguez faus - jaume.dominguez@iver.es
99
 */
100
public abstract class AbstractMarkerSymbol extends AbstractSymbol {
101
        protected Color color = Color.BLACK;
102
        protected double rotation;
103
        protected Point2D offset;
104
        protected double size;
105

    
106
        public double getRotation() {
107
                return rotation;
108
        }
109

    
110
        public void setRotation(double r) {
111
                this.rotation = r;
112
        }
113
        public Point2D getOffset() {
114
                if (offset == null) {
115
                        offset = new Point();
116
                }
117
                return offset;
118
        }
119

    
120
        public void setOffset(Double offset) {
121
                this.offset = offset;
122
        }
123

    
124
        public boolean isSuitableFor(IGeometry geom) {
125
                return geom.getGeometryType() == FShape.POINT;
126
        }
127

    
128
        public int getOnePointRgb() {
129
                return color.getRGB();
130
        }
131

    
132
        public double getSize() {
133
                return size;
134
        }
135

    
136
        public void setSize(double size) {
137
                this.size = size;
138
        }
139

    
140
        public Color getColor() {
141
                return color;
142
        }
143

    
144
        public void setColor(Color color) {
145
                this.color = color;
146
        }
147

    
148
}