Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_controls / src / org / gvsig / fmap / mapcontrol / dal / feature / swing / table / GeometryWKTCellRenderer.java @ 38564

History | View | Annotate | Download (2.8 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22

    
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2008 {DiSiD Technologies}  {Create a JTable TableModel for a FeatureCollection}
26
 */
27
package org.gvsig.fmap.mapcontrol.dal.feature.swing.table;
28

    
29
import org.gvsig.fmap.geom.Geometry;
30
import org.gvsig.fmap.geom.operation.towkt.ToWKT;
31

    
32
/**
33
 * Renderer for cells of type {@link Geometry}, showing it in WKT format.
34
 * 
35
 * @author <a href="mailto:cordin@disid.com">C?sar Ordi?ana</a>
36
 */
37
public class GeometryWKTCellRenderer extends TextAreaCellRenderer {
38

    
39
    private static final long serialVersionUID = -2470239399517077869L;
40
    
41
    public static final int DEFAULT_MAX_WKT_LENGTH = 800;
42
    
43
    public static final int DEFAULT_MAX_ROW_HEIGHT = 80;
44

    
45
    /**
46
     * Creates a new GeometryWKTCellRenderer, with the default MAX LENGTH fot
47
     * the WKT Strings and the default MAX HEIGHT for rows.
48
     */
49
    public GeometryWKTCellRenderer() {
50
        this(DEFAULT_MAX_WKT_LENGTH, DEFAULT_MAX_ROW_HEIGHT);
51
    }
52

    
53
    /**
54
     * Creates a new GeometryWKTCellRenderer.
55
     * 
56
     * @param maxWKTLength
57
     *            the maximum WTK length to be rendered.
58
     * @param maxRowHeight
59
     *            the maximum row height for the rows with cells rendered with
60
     *            this component
61
     */
62
    public GeometryWKTCellRenderer(int maxWKTLength, int maxRowHeight) {
63
        super(maxWKTLength, maxRowHeight);
64
    }
65

    
66
    @Override
67
    protected String getCellText(Object value, int row, int column) {
68
        if (value != null) {
69
            try {
70
                Geometry geometry = (Geometry) value;
71
                String geomTxt = (String) geometry.invokeOperation(ToWKT.CODE,
72
                        null);
73
                if (geomTxt.length() > 200) {
74
                    geomTxt = geomTxt.substring(0, 200);
75
                }
76

    
77
                return geomTxt;
78
            } catch (Exception ex) {
79
                throw new GeometryToWKTException(ex);
80
            }
81
        }
82
        return "";
83
    }
84
}