Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.geometry / org.gvsig.fmap.geometry.jts / src / main / java / org / gvsig / fmap / geom / jts / aggregate / MultiLine2D.java @ 42267

History | View | Annotate | Download (5.15 KB)

1
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2015 gvSIG Association
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., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.geom.jts.aggregate;
24

    
25
import java.awt.Shape;
26
import java.awt.geom.AffineTransform;
27
import java.awt.geom.PathIterator;
28

    
29
import org.cresques.cts.ICoordTrans;
30

    
31
import org.gvsig.fmap.geom.Geometry;
32
import org.gvsig.fmap.geom.GeometryException;
33
import org.gvsig.fmap.geom.aggregate.MultiLine;
34
import org.gvsig.fmap.geom.aggregate.MultiPoint;
35
import org.gvsig.fmap.geom.aggregate.MultiPolygon;
36
import org.gvsig.fmap.geom.handler.Handler;
37
import org.gvsig.fmap.geom.operation.GeometryOperationException;
38
import org.gvsig.fmap.geom.operation.GeometryOperationNotSupportedException;
39
import org.gvsig.fmap.geom.primitive.GeneralPathX;
40

    
41

    
42
/**
43
 * @author fdiaz
44
 *
45
 */
46
public class MultiLine2D extends AbstractMultiLine {
47

    
48
    /**
49
     *
50
     */
51
    private static final long serialVersionUID = -7228982246077967859L;
52

    
53
    /**
54
     * @param type
55
     * @param subtype
56
     */
57
    public MultiLine2D(int type) {
58
        super(Geometry.SUBTYPES.GEOM2D);
59
    }
60

    
61
    /* (non-Javadoc)
62
     * @see org.gvsig.fmap.geom.aggregate.MultiLine#toPoints()
63
     */
64
    public MultiPoint toPoints() throws GeometryException {
65
        // TODO Auto-generated method stub
66
        return null;
67
    }
68

    
69
    /* (non-Javadoc)
70
     * @see org.gvsig.fmap.geom.aggregate.MultiLine#toLines()
71
     */
72
    public MultiLine toLines() throws GeometryException {
73
        // TODO Auto-generated method stub
74
        return null;
75
    }
76

    
77
    /* (non-Javadoc)
78
     * @see org.gvsig.fmap.geom.aggregate.MultiLine#toPolygons()
79
     */
80
    public MultiPolygon toPolygons() throws GeometryException {
81
        // TODO Auto-generated method stub
82
        return null;
83
    }
84

    
85
    /* (non-Javadoc)
86
     * @see org.gvsig.fmap.geom.aggregate.Aggregate#union()
87
     */
88
    public Geometry union() throws GeometryOperationException, GeometryOperationNotSupportedException {
89
        // TODO Auto-generated method stub
90
        return null;
91
    }
92

    
93
    /* (non-Javadoc)
94
     * @see org.gvsig.fmap.geom.aggregate.Aggregate#intersection()
95
     */
96
    public Geometry intersection() throws GeometryOperationException, GeometryOperationNotSupportedException {
97
        // TODO Auto-generated method stub
98
        return null;
99
    }
100

    
101
    /* (non-Javadoc)
102
     * @see org.gvsig.fmap.geom.Geometry#cloneGeometry()
103
     */
104
    public Geometry cloneGeometry() {
105
        // TODO Auto-generated method stub
106
        return null;
107
    }
108

    
109

    
110
    /* (non-Javadoc)
111
     * @see org.gvsig.fmap.geom.Geometry#getDimension()
112
     */
113
    public int getDimension() {
114
        // TODO Auto-generated method stub
115
        return 0;
116
    }
117

    
118
    /* (non-Javadoc)
119
     * @see org.gvsig.fmap.geom.Geometry#getShape(java.awt.geom.AffineTransform)
120
     */
121
    public Shape getShape(AffineTransform affineTransform) {
122
        // TODO Auto-generated method stub
123
        return null;
124
    }
125

    
126
    /* (non-Javadoc)
127
     * @see org.gvsig.fmap.geom.Geometry#getShape()
128
     */
129
    public Shape getShape() {
130
        // TODO Auto-generated method stub
131
        return null;
132
    }
133

    
134
    /* (non-Javadoc)
135
     * @see org.gvsig.fmap.geom.Geometry#getPathIterator(java.awt.geom.AffineTransform)
136
     */
137
    public PathIterator getPathIterator(AffineTransform at) {
138
        // TODO Auto-generated method stub
139
        return null;
140
    }
141

    
142
    /* (non-Javadoc)
143
     * @see org.gvsig.fmap.geom.Geometry#getHandlers(int)
144
     */
145
    public Handler[] getHandlers(int type) {
146
        // TODO Auto-generated method stub
147
        return null;
148
    }
149

    
150
    /* (non-Javadoc)
151
     * @see org.gvsig.fmap.geom.Geometry#getPathIterator(java.awt.geom.AffineTransform, double)
152
     */
153
    public PathIterator getPathIterator(AffineTransform at, double flatness) {
154
        // TODO Auto-generated method stub
155
        return null;
156
    }
157

    
158
    /* (non-Javadoc)
159
     * @see org.gvsig.fmap.geom.Geometry#getGeneralPath()
160
     */
161
    public GeneralPathX getGeneralPath() {
162
        // TODO Auto-generated method stub
163
        return null;
164
    }
165

    
166
    /* (non-Javadoc)
167
     * @see org.gvsig.fmap.geom.jts.GeometryJTS#getJTS()
168
     */
169
    public com.vividsolutions.jts.geom.Geometry getJTS() {
170
        // TODO Auto-generated method stub
171
        return null;
172
    }
173

    
174
    /* (non-Javadoc)
175
     * @see org.gvsig.fmap.geom.jts.GeometryJTS#is3D()
176
     */
177
    public boolean is3D() {
178
        // TODO Auto-generated method stub
179
        return false;
180
    }
181

    
182
}