Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.shp / src / main / java / org / gvsig / fmap / dal / store / shp / utils / SHPShape.java @ 40559

History | View | Annotate | Download (2.21 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
package org.gvsig.fmap.dal.store.shp.utils;
25

    
26
import java.nio.ByteBuffer;
27
import java.nio.MappedByteBuffer;
28

    
29
import org.gvsig.fmap.geom.Geometry;
30

    
31
/**
32
 * Interfaz de todos los tipos de formato shape.
33
 *
34
 * @author Vicente Caballero Navarro
35
 */
36
public interface SHPShape {
37
        /**
38
         * Devuelve el tipo de shape de que se trata.
39
         *
40
         * @return Tipo de shape.
41
         */
42
        public int getShapeType();
43

    
44
        /**
45
         * Lee del buffer el shape y crea una nueva geometr?a.
46
         *
47
         * @param buffer Buffer de donde se lee.
48
         * @param type Tipo de shape en concreto.
49
         *
50
         * @return Nueva geometr?a.
51
         */
52
        public Geometry read(MappedByteBuffer buffer, int type);
53

    
54
        /**
55
         * Escribe en el buffer la geometr?a que se pasa como par?metro.
56
         *
57
         * @param buffer Buffer donde escribir.
58
         * @param geometry Geometr?a a escribir.
59
         */
60
        public void write(ByteBuffer buffer, Geometry geometry);
61

    
62
        /**
63
         * Devuelve el tama?o de la geometr?a.
64
         *
65
         * @param fgeometry Geometr?a a medir.
66
         *
67
         * @return Tama?o de la geometr?a.
68
         */
69
        public int getLength(Geometry fgeometry);
70

    
71
        /**
72
         * Obtiene los puntos y partes del GeneralPathXIterator del shape.
73
         *
74
         * @param iter
75
         */
76
        public void obtainsPoints(Geometry g);
77

    
78
//        public void setFlatness(double flatness);
79
}