Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / rendering / legend / AbstractClassifiedVectorLegend.java @ 28092

History | View | Annotate | Download (3.25 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
 * Abstract class that implements the interface for legends composed by
47
 * classified symbols.It will have two methods that will be executed depending
48
 * on the action that had been done with the legend (addition of a new symbol or
49
 * clear the legend).
50
 *
51
 * @author pepe vidal salvador - jose.vidal.salvador@iver.es
52
 */
53
public abstract class AbstractClassifiedVectorLegend extends AbstractLegend implements IClassifiedVectorLegend {
54
        private String[] fieldNames;
55
        private int[] fieldTypes;
56
        private ZSort zSort;
57

    
58
        /**
59
         * Looks for a change in a classified symbol of a legend. To perform
60
         * it, the Array of LegendListeners is scaned and when the corresponding
61
         * listener is true, the method is invoked and the change will be done.
62
         * @param event
63
         */
64
        public void fireClassifiedSymbolChangeEvent(SymbolLegendEvent event) {
65
                for (int i = 0; i < getListeners().length; i++) {
66
                        getListeners()[i].symbolChanged(event);
67
                }
68
        }
69
        /**
70
         * Looks for a change in a legend of classified symbols. In this case
71
         * if the specific legend is cleared.
72
         * @param event
73
         */
74
        public void fireLegendClearEvent(LegendClearEvent event) {
75
                for (int i = 0; i < getListeners().length; i++) {
76
                        getListeners()[i].legendCleared(event);
77
                }
78
        }
79

    
80
        public String[] getClassifyingFieldNames() {
81
                return fieldNames;
82
        }
83

    
84

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

    
89
        public int[] getClassifyingFieldTypes() {
90
                return fieldTypes;
91
        }
92

    
93
        public void setClassifyingFieldTypes(int[] fieldTypes) {
94
                this.fieldTypes =  fieldTypes;
95
        }
96

    
97
        public ZSort getZSort() {
98
                return zSort;
99
        }
100

    
101
        public void setZSort(ZSort zSort) {
102
                if (zSort == null) {
103
                        removeLegendListener(this.zSort);
104
                }
105
                this.zSort = zSort;
106
                addLegendListener(zSort);
107
        }
108

    
109

    
110
        public boolean isSuitableForShapeType(int shapeType) {
111
                return getShapeType() == shapeType;
112
        }
113
}