Statistics
| Revision:

root / branches / simbologia / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / symbols / AbstractMarkerSymbol.java @ 10099

History | View | Annotate | Download (3.42 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 10099 2007-02-02 16:21:24Z jaume $
45
* $Log$
46
* Revision 1.3.2.1  2007-02-02 16:21:24  jaume
47
* start commiting labeling stuff
48
*
49
* Revision 1.3  2007/01/25 16:25:23  jaume
50
* *** empty log message ***
51
*
52
* Revision 1.2  2007/01/16 11:50:44  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.1  2007/01/10 16:31:36  jaume
56
* *** empty log message ***
57
*
58
* Revision 1.4  2006/12/04 17:13:39  fjp
59
* *** empty log message ***
60
*
61
* Revision 1.3  2006/11/14 11:10:27  jaume
62
* *** empty log message ***
63
*
64
* Revision 1.2  2006/11/09 18:39:05  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.1  2006/10/31 16:16:34  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.4  2006/10/30 19:30:35  jaume
71
* *** empty log message ***
72
*
73
* Revision 1.3  2006/10/26 16:27:33  jaume
74
* support for composite marker symbols (not tested)
75
*
76
* Revision 1.2  2006/10/26 07:46:58  jaume
77
* *** empty log message ***
78
*
79
* Revision 1.1  2006/10/25 10:50:41  jaume
80
* movement of classes and gui stuff
81
*
82
* Revision 1.1  2006/10/18 07:54:06  jaume
83
* *** empty log message ***
84
*
85
*
86
*/
87
package com.iver.cit.gvsig.fmap.core.symbols;
88

    
89
import java.awt.Color;
90
import java.awt.Point;
91
import java.awt.geom.Point2D;
92
import java.awt.geom.Point2D.Double;
93

    
94
import com.iver.cit.gvsig.fmap.core.FShape;
95
import com.iver.cit.gvsig.fmap.core.IGeometry;
96

    
97

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

    
109
        public double getRotation() {
110
                return rotation;
111
        }
112

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

    
123
        public void setOffset(Double offset) {
124
                this.offset = offset;
125
        }
126

    
127
        public boolean isSuitableFor(IGeometry geom) {
128
                return geom.getGeometryType() == FShape.POINT;
129
        }
130

    
131
        public int getOnePointRgb() {
132
                return color.getRGB();
133
        }
134

    
135
        public double getSize() {
136
                return size;
137
        }
138

    
139
        public void setSize(double size) {
140
                this.size = size;
141
        }
142

    
143
        public Color getColor() {
144
                return color;
145
        }
146

    
147
        public void setColor(Color color) {
148
                this.color = color;
149
        }
150

    
151
}