Statistics
| Revision:

root / branches / v10 / libraries / libjni-gdal / src / es / gva / cit / jogr / OGRMultiLineString.java @ 7847

History | View | Annotate | Download (2.64 KB)

1
/**********************************************************************
2
 * $Id: OGRMultiLineString.java 7847 2006-10-04 06:55:46Z nacho $
3
 *
4
 * Name:     OGRMultiLineString.java
5
 * Project:  JGDAL. Interface java to gdal (Frank Warmerdam).
6
 * Purpose:   
7
 * Author:   Nacho Brodin, brodin_ign@gva.es
8
 *
9
 **********************************************************************/
10
/*Copyright (C) 2004  Nacho Brodin <brodin_ign@gva.es>
11

12
 This program is free software; you can redistribute it and/or
13
 modify it under the terms of the GNU General Public License
14
 as published by the Free Software Foundation; either version 2
15
 of the License, or (at your option) any later version.
16

17
 This program is distributed in the hope that it will be useful,
18
 but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 GNU General Public License for more details.
21

22
 You should have received a copy of the GNU General Public License
23
 along with this program; if not, write to the Free Software
24
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
 */
26

    
27
package es.gva.cit.jogr;
28

    
29

    
30
/** 
31
 * Esta clase representa a una fuente de datos
32
 * 
33
 * @author Nacho Brodin <brodin_ign@gva.es>.<BR> Equipo de desarrollo gvSIG.<BR> http://www.gvsig.gva.es
34
 * @version 0.0
35
 * @link http://www.gvsig.gva.es
36
 */
37

    
38
public class OGRMultiLineString extends JNIBase{
39
        
40
        private native void FreeOGRMultiLineStringNat(long cPtr);
41
        private native String getGeometryTypeNat(long cPtr);//return OGRwkbGeometryType
42
        private native OGRGeometry cloneNat(long cPtr);
43
        private native int importFromWktNat(long cPtr, String[] wkt );//Excepciones
44
        private native int exportToWktNat(long cPtr, String[] wkt );//Excepciones
45
        private native int addGeometryDirectlyNat(long cPtr, OGRGeometry geom );//Excepciones
46
        
47
        
48
        /**
49
         * Constructor
50
         * @param cPtr        direcci?n de memoria al objeto OGRMultiLineString de C. 
51
         */
52
                
53
        public OGRMultiLineString(long cPtr){
54
                this.cPtr=cPtr;
55
        }                
56
                
57
        /**
58
         * Destructor 
59
         */
60
        
61
        protected void finalize(){
62
                if(cPtr > 0)
63
                        FreeOGRMultiLineStringNat(cPtr);
64
        }
65
         
66
//        Non standard (OGRGeometry).
67
        
68
        /**
69
         * 
70
         */
71
        
72
        public String getGeometryName()throws OGRException{
73
                return null;
74
        }
75

    
76
        /**
77
         * 
78
         */
79

    
80
        public String getGeometryType()throws OGRException{
81
                return null;
82
        }
83

    
84
        /**
85
         * 
86
         */
87

    
88
        public OGRGeometry cloneMultiPolygon()throws OGRException{
89
                return null;
90
        }
91

    
92
        /**
93
         * 
94
         */
95

    
96
        public void importFromWkt( String[] wkt )throws OGRException{//Excepciones
97
                
98
        }
99

    
100
        /**
101
         * 
102
         */
103

    
104
        public void exportToWkt( String[] wkt )throws OGRException{//Excepciones
105
                
106
        }
107

    
108
    // Non standard
109

    
110
        /**
111
         * 
112
         */
113

    
114
        public void addGeometryDirectly( OGRGeometry geom )throws OGRException{//Excepciones
115
                
116
        }
117
        
118
        
119
}