Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libjni-mrsid / src / es / gva / cit / jmrsid / LTIImageReader.java @ 837

History | View | Annotate | Download (1.79 KB)

1
/**********************************************************************
2
 * $Id: LTIImageReader.java 720 2004-12-28 16:18:01Z igbrotru $
3
 *
4
 * Name:     LTIImageReader.java
5
 * Project:  JMRSID. Interface java to mrsid (Lizardtech).
6
 * Purpose:  Dataset's Basic Funcions. 
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.jmrsid;
28

    
29

    
30

    
31
/**
32
 * Contiene las funcionalidades necesarias para el acceso a los
33
 * elementos de un dataset de mrsid correspondiente a una im?gen 
34
 * 
35
 * @author Nacho Brodin <brodin_ign@gva.es>.<BR> Equipo de desarrollo gvSIG.<BR> http://www.gvsig.gva.es
36
 * @version 0.0
37
 * @link http://www.gvsig.gva.es
38
 */
39

    
40
public class LTIImageReader extends LTIImageStage{
41
        
42
        /**
43
         * Get Strip Height
44
         * 
45
         * @throws MrSIDException
46
         * @return strip height
47
         */
48
        
49
        public int getStripHeight()throws MrSIDException{
50
                
51
                String msg1="Error en getStripHeight. No se ha obtenido un puntero valido a LTIImage";
52
                String msg2="La llamada nativa a getStripHeight ha devuelto un c?digo de error";
53
                return baseSimpleFunction(5,msg1,msg2);
54
                
55
        }
56
        
57
        
58
}