Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.geometry / org.gvsig.fmap.geometry.impl / src / main / java / org / gvsig / fmap / geom / primitive / FShape.java @ 40767

History | View | Annotate | Download (2.36 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

    
25
package org.gvsig.fmap.geom.primitive;
26

    
27
import java.awt.Shape;
28
import java.awt.geom.AffineTransform;
29
import java.io.Serializable;
30

    
31
import org.cresques.cts.ICoordTrans;
32
import org.gvsig.fmap.geom.handler.Handler;
33

    
34
/**
35
 * <p>The interface <code>FShape</code> extends <code>Shape</code> adding shape types, and allowing
36
 *  to work with it as a geometry.</p>
37
 *  
38
 *  @deprecated
39
 */
40
public interface FShape extends Shape, Serializable {
41
        /**
42
         * Gets the geometry type of this shape.
43
         *
44
         * @return int the geometry type of this shape.
45
         */
46
        public int getShapeType();
47
        
48
        /**
49
         * Creates and returns a shape equal and independent of this one.
50
         *
51
         * @return the new shape.
52
         */
53
        public FShape cloneFShape();
54
        /**
55
         * Re-projects this shape using transformation coordinates. 
56
         *
57
         * @param ct the transformation coordinates
58
         */
59
        public void reProject(ICoordTrans ct);
60

    
61
        /**
62
         * Returns the handlers they utilized to stretch the geometries.
63
         *
64
         * @return Handlers the handlers used to stretch the geometries
65
         */
66
        public Handler[] getStretchingHandlers();
67

    
68
        /**
69
         * Returns the handlers used to select the geometries.
70
         *
71
         * @return Handlers the handlers used to select the geometries
72
         */
73
        public Handler[] getSelectHandlers();
74
        /**
75
         * Executes a 2D transformation on this shape, using six parameters.
76
         * 
77
         * @param at object that allows execute the affine transformation
78
         * 
79
         * @see AffineTransform
80
         */
81
        public void transform(AffineTransform at);
82
}