Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / rendering / legend / AbstractClassifiedVectorLegend.java @ 21298

History | View | Annotate | Download (3.28 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 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
package org.gvsig.fmap.mapcontext.rendering.legend;
42

    
43
import org.gvsig.fmap.mapcontext.rendering.legend.events.LegendClearEvent;
44

    
45

    
46

    
47
/**
48
 * Abstract class that implements the interface for legends composed by
49
 * classified symbols.It will have two methods that will be executed
50
 * depending on the action that had been done with the legend (addition 
51
 * of a new symbol or clear the legend).
52
 *  
53
 * @author pepe vidal salvador - jose.vidal.salvador@iver.es
54
 */
55
public abstract class AbstractClassifiedVectorLegend extends AbstractLegend implements IClassifiedVectorLegend {
56
        private String[] fieldNames;
57
        private String[] fieldTypes;
58
        private ZSort zSort;
59
        
60
        /**
61
         * Looks for a change in a classified symbol of a legend. To perform
62
         * it, the Array of LegendListeners is scaned and when the corresponding
63
         * listener is true, the method is invoked and the change will be done.
64
         * @param event
65
         */
66
        public void fireClassifiedSymbolChangeEvent(SymbolLegendEvent event) {
67
                for (int i = 0; i < getListeners().length; i++) {
68
                        getListeners()[i].symbolChanged(event);
69
                }
70
        }
71
        /**
72
         * Looks for a change in a legend of classified symbols. In this case
73
         * if the specific legend is cleared.
74
         * @param event
75
         */
76
        public void fireLegendClearEvent(LegendClearEvent event) {
77
                for (int i = 0; i < getListeners().length; i++) {
78
                        getListeners()[i].legendCleared(event);
79
                }
80
        }
81

    
82
        public String[] getClassifyingFieldNames() {
83
                return fieldNames;
84
        }
85

    
86

    
87
        public void setClassifyingFieldNames(String[] fieldNames) {
88
                this.fieldNames = fieldNames;
89
        }
90

    
91
        public String[] getClassifyingFieldTypes() {
92
                return fieldTypes;
93
        }
94

    
95
        public void setClassifyingFieldTypes(String[] fieldTypes) {
96
                this.fieldTypes =  fieldTypes;
97
        }
98
        
99
        public ZSort getZSort() {
100
                return zSort;
101
        }
102
        
103
        public void setZSort(ZSort zSort) {
104
                if (zSort == null) {
105
                        removeLegendListener(this.zSort);
106
                }
107
                this.zSort = zSort;
108
                addLegendListener(zSort);
109
        }
110
        
111
        
112
        public boolean isSuitableForShapeType(int shapeType) {
113
                return getShapeType() == shapeType;
114
        }
115
}