Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / rendering / legend / IVectorialIntervalLegend.java @ 40559

History | View | Annotate | Download (2.64 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program 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
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.fmap.mapcontext.rendering.legend;
25

    
26
import java.awt.Color;
27

    
28
import org.gvsig.fmap.dal.exception.DataException;
29
import org.gvsig.fmap.dal.feature.FeatureStore;
30
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
31

    
32

    
33
/**
34
 * Interface that allows the methods to classify the legend through intervals.
35
 *
36
 */
37
public interface IVectorialIntervalLegend extends IClassifiedVectorLegend {
38
        
39
        public static final String LEGEND_NAME = "VectorialInterval";
40

    
41
    public void setDefaultSymbol(ISymbol s);
42

    
43
    public IInterval getInterval(Object v) ;
44
    public int getIntervalType();
45

    
46
        /**
47
         *
48
         * Returns the symbol starting from an interval
49
         *
50
         * @param key interval.
51
         *
52
         * @return symbol.
53
         */
54
    public ISymbol getSymbolByInterval(IInterval key);
55

    
56

    
57
    /**
58
     * Inserts the type of the classification of the intervals.
59
         *
60
         * @param tipoClasificacion type of the classification.
61
         */
62
    public void setIntervalType(int tipoClasificacion);
63

    
64
    /**
65
         * Inserts the initial color
66
         * @param startColor initial color.
67
         */
68
        public void setStartColor(Color startColor);
69

    
70
    /**
71
         * Inserts the final color.
72
         * @param endColor final color.
73
         */
74
        public void setEndColor(Color endColor);
75

    
76
    /**
77
         * Returns the initial color.
78
         * @return  Color initial color.
79
         */
80
        public Color getStartColor();
81

    
82
    /**
83
         * Returns the final color
84
         * @return Color  final color.
85
         */
86
        public Color getEndColor();
87

    
88
        public IInterval[] calculateIntervals(FeatureStore featureStore,
89
                        String selectedItem, int intervalCount, int shapeType)
90
                        throws DataException;
91

    
92

    
93
//    public ISymbol getSymbol(FeatureReference id) throws DataException;
94

    
95
}
96