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 @ 40559

History | View | Annotate | Download (2.43 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
 * AUTHORS (In addition to CIT):
26
 * 2009 {Iver T.I.}   {Task}
27
 */
28

    
29
package org.gvsig.fmap.geom.primitive;
30

    
31
import java.awt.Shape;
32
import java.awt.geom.AffineTransform;
33
import java.io.Serializable;
34

    
35
import org.cresques.cts.ICoordTrans;
36
import org.gvsig.fmap.geom.handler.Handler;
37

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

    
65
        /**
66
         * Returns the handlers they utilized to stretch the geometries.
67
         *
68
         * @return Handlers the handlers used to stretch the geometries
69
         */
70
        public Handler[] getStretchingHandlers();
71

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