Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGeometries / src / com / iver / cit / gvsig / fmap / core / FSolid.java @ 20086

History | View | Annotate | Download (3.78 KB)

1
package com.iver.cit.gvsig.fmap.core;
2

    
3
import java.awt.Rectangle;
4
import java.awt.geom.AffineTransform;
5
import java.awt.geom.PathIterator;
6
import java.awt.geom.Point2D;
7
import java.awt.geom.Rectangle2D;
8

    
9
import org.cresques.cts.ICoordTrans;
10
import org.cresques.cts.IProjection;
11
import org.gvsig.geometries.iso.primitive.Solid;
12

    
13
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
14
 *
15
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
16
 *
17
 * This program is free software; you can redistribute it and/or
18
 * modify it under the terms of the GNU General Public License
19
 * as published by the Free Software Foundation; either version 2
20
 * of the License, or (at your option) any later version.
21
 *
22
 * This program is distributed in the hope that it will be useful,
23
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25
 * GNU General Public License for more details.
26
 *
27
 * You should have received a copy of the GNU General Public License
28
 * along with this program; if not, write to the Free Software
29
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
30
 *
31
 * For more information, contact:
32
 *
33
 *  Generalitat Valenciana
34
 *   Conselleria d'Infraestructures i Transport
35
 *   Av. Blasco Ib??ez, 50
36
 *   46010 VALENCIA
37
 *   SPAIN
38
 *
39
 *      +34 963862235
40
 *   gvsig@gva.es
41
 *      www.gvsig.gva.es
42
 *
43
 *    or
44
 *
45
 *   IVER T.I. S.A
46
 *   Salamanca 50
47
 *   46005 Valencia
48
 *   Spain
49
 *
50
 *   +34 963163400
51
 *   dac@iver.es
52
 */
53
/* CVS MESSAGES:
54
 *
55
 * $Id: FSolid.java,v 1.2 2008/03/25 08:47:41 cvs Exp $
56
 * $Log: FSolid.java,v $
57
 * Revision 1.2  2008/03/25 08:47:41  cvs
58
 * Visitors removed
59
 *
60
 * Revision 1.1  2008/03/12 08:46:20  cvs
61
 * *** empty log message ***
62
 *
63
 *
64
 */
65
/**
66
 * @author Jorge Piera Llodr? (jorge.piera@iver.es)
67
 */
68
public class FSolid extends FGeometry implements Solid{
69
                
70
        public FSolid(IProjection projection) {
71
                super(projection);                
72
        }
73

    
74
        public FSolid(String id, IProjection projection) {
75
                super(id, projection);        
76
        }
77

    
78
        public FShape cloneFShape() {
79
                // TODO Auto-generated method stub
80
                return null;
81
        }
82

    
83
        public Handler[] getSelectHandlers() {
84
                // TODO Auto-generated method stub
85
                return null;
86
        }
87

    
88
        public int getShapeType() {
89
                // TODO Auto-generated method stub
90
                return 0;
91
        }
92

    
93
        public Handler[] getStretchingHandlers() {
94
                // TODO Auto-generated method stub
95
                return null;
96
        }
97

    
98
        public void reProject(ICoordTrans ct) {
99
                // TODO Auto-generated method stub
100
                
101
        }
102

    
103
        public void transform(AffineTransform at) {
104
                // TODO Auto-generated method stub
105
                
106
        }
107

    
108
        public boolean contains(Point2D arg0) {
109
                // TODO Auto-generated method stub
110
                return false;
111
        }
112

    
113
        public boolean contains(Rectangle2D arg0) {
114
                // TODO Auto-generated method stub
115
                return false;
116
        }
117

    
118
        public boolean contains(double arg0, double arg1) {
119
                // TODO Auto-generated method stub
120
                return false;
121
        }
122

    
123
        public boolean contains(double arg0, double arg1, double arg2, double arg3) {
124
                // TODO Auto-generated method stub
125
                return false;
126
        }
127

    
128
        public Rectangle getBounds() {
129
                // TODO Auto-generated method stub
130
                return null;
131
        }
132

    
133
        public Rectangle2D getBounds2D() {
134
                // TODO Auto-generated method stub
135
                return null;
136
        }
137

    
138
        public PathIterator getPathIterator(AffineTransform arg0) {
139
                // TODO Auto-generated method stub
140
                return null;
141
        }
142

    
143
        public PathIterator getPathIterator(AffineTransform arg0, double arg1) {
144
                // TODO Auto-generated method stub
145
                return null;
146
        }
147

    
148
        public boolean intersects(Rectangle2D arg0) {
149
                // TODO Auto-generated method stub
150
                return false;
151
        }
152

    
153
        public boolean intersects(double arg0, double arg1, double arg2, double arg3) {
154
                // TODO Auto-generated method stub
155
                return false;
156
        }
157

    
158
        /*
159
         * (non-Javadoc)
160
         * @see org.gvsig.geometries.iso.GM_Object#coordinateDimension()
161
         */
162
        public int getCoordinateDimension() {
163
                return 3;
164
        }
165
}