Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.labeling.app / org.gvsig.labeling.app.mainplugin / src / main / java / org / gvsig / labeling / label / OnSelectionLabeled.java @ 40673

History | View | Annotate | Download (3.26 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: OnSelectionLabeled.java 10815 2007-03-20 16:16:20Z jaume $
45
* $Log$
46
* Revision 1.3  2007-03-20 16:16:20  jaume
47
* refactored to use ISymbol instead of FSymbol
48
*
49
* Revision 1.2  2007/03/09 08:33:43  jaume
50
* *** empty log message ***
51
*
52
* Revision 1.1.2.2  2007/02/01 11:42:47  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.1.2.1  2007/01/30 18:10:45  jaume
56
* start commiting labeling stuff
57
*
58
*
59
*/
60
package org.gvsig.labeling.label;
61

    
62
import java.util.BitSet;
63

    
64
import org.gvsig.symbology.fmap.drivers.featureiterators.FeatureSelectionIterator;
65

    
66
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
67
import com.iver.cit.gvsig.fmap.ViewPort;
68
import com.iver.cit.gvsig.fmap.core.IFeature;
69
import com.iver.cit.gvsig.fmap.drivers.IFeatureIterator;
70
import com.iver.cit.gvsig.fmap.layers.FLyrVect;
71
import com.iver.cit.gvsig.fmap.rendering.styling.labeling.DefaultLabelingMethod;
72
import com.iver.cit.gvsig.fmap.rendering.styling.labeling.LabelClass;
73
/**
74
 *
75
 * OnSelectionLabeled.java
76
 *
77
 *
78
 * @author jaume dominguez faus - jaume.dominguez@iver.es Apr 2, 2008
79
 *
80
 */
81
public class OnSelectionLabeled extends DefaultLabelingMethod {
82

    
83
        @Override
84
        public String getClassName() {
85
                return getClass().getName();
86
        }
87

    
88
        public IFeatureIterator getFeatureIteratorByLabelClass(FLyrVect layer, LabelClass lc, ViewPort viewPort, String[] usedFields)
89
        throws ReadDriverException {
90

    
91
                String sqlFields = "";
92
                for (int i = 0; i < usedFields.length; i++) {
93
                        sqlFields += usedFields[i];
94
                        if (i < usedFields.length -1) sqlFields += ", ";
95
                }
96
                String fieldNames[] = layer.getSource().getRecordset().getFieldNames();
97
                StringBuilder sql = new StringBuilder();
98
                sql.append("select ");
99
                for (int i=0; i<fieldNames.length-1; i++) {
100
                        sql.append(fieldNames[i]);
101
                        sql.append(",");
102
                }
103
                sql.append(fieldNames[fieldNames.length-1]);
104
                sql.append(" from ");
105
                sql.append(layer.getRecordset().getName());
106
                if(lc.isUseSqlQuery()){
107
                        sql.append(" where ");
108
                        sql.append(lc.getSQLQuery());
109
                }
110
                sql.append(";");
111

    
112
                return layer.getSource().getFeatureIterator(sql.toString(), layer.getProjection(),true);
113

    
114

    
115
        }
116

    
117

    
118
}