Revision 1937

View differences:

trunk/libraries/libjni-ecwcompress/.cdtproject
20 20
<buildArguments>-f makefile.w32</buildArguments>
21 21
<buildTarget>java</buildTarget>
22 22
<stopOnError>false</stopOnError>
23
<useDefaultCommand>false</useDefaultCommand>
23
<useDefaultCommand>true</useDefaultCommand>
24 24
</target>
25 25
<target name="header" targetID="org.eclipse.cdt.make.MakeTargetBuilder" path="">
26 26
<buildCommand>nmake</buildCommand>
......
34 34
<buildArguments>-f makefile.w32</buildArguments>
35 35
<buildTarget>jar</buildTarget>
36 36
<stopOnError>false</stopOnError>
37
<useDefaultCommand>false</useDefaultCommand>
37
<useDefaultCommand>true</useDefaultCommand>
38 38
</target>
39 39
<target name="all" targetID="org.eclipse.cdt.make.MakeTargetBuilder" path="">
40 40
<buildCommand>nmake</buildCommand>
41 41
<buildArguments>-f makefile.w32</buildArguments>
42
<buildTarget>default</buildTarget>
42
<buildTarget>all</buildTarget>
43 43
<stopOnError>false</stopOnError>
44
<useDefaultCommand>false</useDefaultCommand>
44
<useDefaultCommand>true</useDefaultCommand>
45 45
</target>
46 46
<target name="install" targetID="org.eclipse.cdt.make.MakeTargetBuilder" path="">
47 47
<buildCommand>nmake</buildCommand>
......
55 55
<buildArguments>-f makefile.w32</buildArguments>
56 56
<buildTarget>clean</buildTarget>
57 57
<stopOnError>false</stopOnError>
58
<useDefaultCommand>false</useDefaultCommand>
58
<useDefaultCommand>true</useDefaultCommand>
59 59
</target>
60 60
<target name="test" targetID="org.eclipse.cdt.make.MakeTargetBuilder" path="">
61 61
<buildCommand>nmake</buildCommand>
trunk/libraries/libjni-ecwcompress/src-test/TifToEcw.java
1
import es.gva.cit.jecwcompress.*;
2
import es.gva.cit.jgdal.*;
3

  
4
public class TifToEcw{
5
	public static void main(String[] args){
6
 
7
	  Gdal migdal=new Gdal();
8
	  NCSEcwCompressClient client;
9
	  
10
	  try{
11
	    if(args.length>0)
12
	    	migdal.open(args[0],Gdal.GA_ReadOnly);
13
	  }catch(Exception ge){
14
			ge.printStackTrace();
15
			//...........
16
	  }
17
	  
18
	  GdalRasterBand mirasterband=null;  
19
	  String st;
20
	  int nxsize=0;
21
	  int nysize=0;
22
	  int rastercount=0;
23
	  String rasterband; 
24
	  GeoTransform gt=null;	  
25
	  
26
	  try{
27
	  	rastercount=migdal.getRasterCount();
28
	    nxsize = migdal.getRasterXSize();
29
	    nysize = migdal.getRasterYSize();
30
	    System.out.println("N BANDAS="+rastercount+" SIZEX="+nxsize+" SIZEY="+nysize);
31
	    System.out.println(migdal.getProjectionRef());	
32
	  }catch(GdalException ge){
33
	  						ge.printStackTrace();
34
	  						//...........
35
	  					   }
36
	  
37
	  
38
	  
39
	  try{
40
	  	gt=migdal.getGeoTransform();
41
	  	System.out.println("Origin = ("+gt.adfgeotransform[0]+","+gt.adfgeotransform[3]+")");
42
	  	System.out.println("Pixel Size = ("+gt.adfgeotransform[1]+","+gt.adfgeotransform[5]+")");
43
	  }catch(GdalException e){
44
	  		System.out.println("No puedo obtener el array geoTransform.");
45
			e.printStackTrace();
46
			//...........
47
	  }
48
	  
49
	  try{
50
	  	client = new NCSEcwCompressClient();
51
	  	
52
	  	client.setOutputFilename(args[1]);  	
53
	  	client.setInputFilename(args[0]);
54
	    client.setTargetCompress(Double.parseDouble(args[2]));
55
	    client.setInOutSizeX(nxsize);
56
	    client.setInOutSizeY(nysize);
57
	    client.setInputBands(rastercount);
58
	    
59
		if(rastercount == 1) {
60
			client.setCompressFormat(CompressFormat.COMPRESS_UINT8);
61
		}
62
		else if(rastercount == 3) {
63
			client.setCompressFormat(CompressFormat.COMPRESS_RGB);
64
		}
65
		else {
66
			client.setCompressFormat(CompressFormat.COMPRESS_MULTI);
67
		}
68
		
69
		client.setCellIncrementX(gt.adfgeotransform[1]);
70
		client.setCellIncrementY(gt.adfgeotransform[5]);
71
		client.setOriginX(gt.adfgeotransform[0]);
72
		client.setOriginY(gt.adfgeotransform[3]);
73
		client.setCellSizeUnits(1);
74
		
75
	  	
76
	  }catch(EcwException e){
77
		e.printStackTrace();
78
		//...........
79
	  }
80
	  /*for(int iBand=0;iBand<rastercount;iBand++){
81
	  	
82
	  	int tipo=0;
83
	  	try{
84
	  		mirasterband=migdal.getRasterBand(iBand+1);
85
	  		System.out.println("SIZE BANDA=("+mirasterband.getRasterBandXSize()+","+mirasterband.getRasterBandYSize()+")");
86
	  		System.out.println("SIZE BLOQUE BANDA=("+mirasterband.getBlockXSize()+","+mirasterband.getBlockYSize()+")");
87
	  		noverviews=mirasterband.getOverviewCount();
88
	  		System.out.println("N? OVERVIEWS="+noverviews);
89
	  		tipo = mirasterband.getRasterDataType();
90
	  		System.out.println("TIPO DE DATOS BANDA="+tipo);
91
	  	}catch(GdalException e){
92
	  		e.printStackTrace();
93
	  		System.exit(1);
94
	  	}
95
	  	
96

  
97

  
98
	  		
99
	  	}catch(GdalException e){
100
	  		e.printStackTrace();
101
	  		System.exit(1);
102
	  	}
103
	  	
104
	  	
105
	  	
106
	  	
107
	  	
108
		  
109
	  try{	  	    	    
110
	    migdal.close();
111
	  }catch(GdalException e){
112
	  							e.printStackTrace();
113
	  						 }
114
	  
115
	  */
116
	}  
117
}
trunk/libraries/libjni-ecwcompress/src-test/TestCompressEcw.java
1
import es.gva.cit.jecwcompress.*;
2
import es.gva.cit.jgdal.*;
3

  
4
public class TestCompressEcw{
5
	
6
	public static void Uso(){
7
		System.out.println("Uso 1: Comprime una ventana de la imagen.");
8
		System.out.println("	java TifToEcw file-src file-dst compresi?n ulX ulY sizeX sizeY");
9
		System.out.println("Uso 2: Comprime a tama?o completo de la im?gen.");
10
		System.out.println("	java TifToEcw file-src file-dst compresi?n");
11
	}
12
	
13
	public static void main(String[] args){
14
 
15
	  Gdal migdal=new Gdal();
16
	  NCSEcwCompressClient client;
17
	  Read lectura=null;
18
	 
19
	  if(args.length != 3 && args.length != 7){
20
	  	TestCompressEcw.Uso();
21
	  	return;
22
	  }
23
	  
24
	  try{
25
	    	migdal.open(args[0],Gdal.GA_ReadOnly);
26
	  }catch(Exception ge){
27
			ge.printStackTrace();
28
			//...........
29
	  }
30
	  
31
	  GdalRasterBand mirasterband=null;  
32
	  String st;
33
	  int nxsize=0;
34
	  int nysize=0;
35
	  int ulX=0;
36
	  int ulY=0;
37
	  int widthcompress = 0;
38
	  int heightcompress = 0;
39
	  int rastercount=0;
40
	  String rasterband; 
41
	  GeoTransform gt=null;	  
42
	  	  
43
	  try{
44
	  	rastercount=migdal.getRasterCount();
45
	    nxsize = migdal.getRasterXSize();
46
	    nysize = migdal.getRasterYSize();
47
	    System.out.println("N BANDAS="+rastercount+" SIZEX="+nxsize+" SIZEY="+nysize);
48
	    System.out.println(migdal.getProjectionRef());	
49
	  }catch(GdalException ge){
50
	  						ge.printStackTrace();
51
	  						//...........
52
	  					   }
53
	  
54
	  if(args.length == 7){
55
	  	ulX = Integer.parseInt(args[3]);
56
	  	ulY = Integer.parseInt(args[4]);
57
	  	widthcompress = Integer.parseInt(args[5]);
58
		heightcompress = Integer.parseInt(args[6]);
59
		if(ulX<0 || ulY<0 || (ulX+widthcompress)>nxsize || (ulY+heightcompress)>nysize){
60
			System.out.println("Error en los l?mites de la ventana solicitada");
61
			return;
62
		}
63
		
64
	  }else{
65
	  	widthcompress = nxsize;
66
		heightcompress = nysize;
67
	  }
68
	  
69
	  
70
	  try{
71
	  	gt=migdal.getGeoTransform();
72
	  	System.out.println("Origins = ("+gt.adfgeotransform[0]+","+gt.adfgeotransform[3]+")");
73
	  	System.out.println("Pixel Size = ("+gt.adfgeotransform[1]+","+gt.adfgeotransform[5]+")");
74
	  }catch(GdalException e){
75
	  		System.out.println("No puedo obtener el array geoTransform.");
76
			e.printStackTrace();
77
			//...........
78
	  }
79
	  
80
	  try{
81
	  	client = new NCSEcwCompressClient();
82
	  	
83
	  	client.setOutputFilename(args[1]);  	
84
	  	client.setInputFilename(args[0]);
85
	    client.setTargetCompress(Double.parseDouble(args[2]));
86
	    client.setInOutSizeX(widthcompress);
87
	    client.setInOutSizeY(heightcompress);
88
	    client.setInputBands(rastercount);
89
	    
90
		if(rastercount == 1) {
91
			client.setCompressFormat(CompressFormat.COMPRESS_UINT8);
92
		}
93
		else if(rastercount == 3) {
94
			client.setCompressFormat(CompressFormat.COMPRESS_RGB);
95
		}
96
		else {
97
			client.setCompressFormat(CompressFormat.COMPRESS_MULTI);
98
		}
99
		//client.setDatum("UTM Zona 31N");
100
		client.setProjection("WGS84");
101
		client.setCellIncrementX(gt.adfgeotransform[1]);
102
		client.setCellIncrementY(gt.adfgeotransform[5]);
103
		client.setOriginX(gt.adfgeotransform[0]);
104
		client.setOriginY(gt.adfgeotransform[3]);
105
		client.setCellSizeUnits(1);
106
		
107
		System.out.println(Double.parseDouble(args[2]));
108
	
109
		lectura = new Read(migdal, client, ulX, ulY, widthcompress, heightcompress);
110
		client.NCSEcwCompressOpen(false);
111
		client.NCSEcwCompress(lectura);
112
		client.NCSEcwCompressClose();
113
	  			
114
	  }catch(EcwException e){
115
		e.printStackTrace();
116
		//...........
117
	  }
118
	  
119
	   		  
120
	  try{	  	    	    
121
	    migdal.close();
122
	  }catch(GdalException e){
123
	  							e.printStackTrace();
124
	  						 }
125
	  
126
	  
127
	}  
128
}
129

  
130
/**
131
 *
132
 * Para la lectura hay que hacer una clase que extienda de JniObject e implemente ReadCallBack
133
 * . Esto obliga a crear un m?todo loadBuffer. En el hay que meter la funcionalidad para que
134
 * llene el buffer. El buffer esta en la clase cliente y tendr? una longitud de 
135
 * ancho de una l?nea * n?mero de bandas
136
 */
137

  
138
class Read extends JniObject implements ReadCallBack {
139
	
140
	private GdalBuffer buf=null;
141
	private GdalRasterBand mirasterband=null;
142
	private Gdal migdal=null;
143
	private NCSEcwCompressClient client=null;
144
	private int width, height;
145
	private int ulX, ulY;
146
	
147
	public Read(Gdal g, NCSEcwCompressClient client,int ulx, int uly, int width, int height){
148
		migdal = g;
149
		this.client = client;
150
		this.width = width;
151
		this.height = height;
152
		this.ulX = ulx;
153
		this.ulY = uly;
154
	}
155
	
156
	public void loadBuffer(){
157
	
158
		try{
159
			for(int iBand=0;iBand<migdal.getRasterCount();iBand++){
160
				mirasterband=migdal.getRasterBand(iBand+1);
161
		  		buf = mirasterband.readRaster(ulX, ulY+nNextLine, width, 1, width, 1, 1);
162
		  		for(int pos=0; pos<width; pos++){
163
		  			client.buffer[pos+(width*iBand)]=buf.buffByte[pos];
164
		  		}
165
			}
166
	  	}catch(GdalException e){ 
167
	  		System.out.println("Error en la lectura de lineas con Gdal.");
168
	  		System.exit(1);
169
	  	}
170
	  	
171
	  	 
172
	  			
173
	}
174
	
175
	public void updatePercent(){
176
		System.out.println(client.getPercent()+"%");
177
	}
178
}
0 179

  
trunk/libraries/libjni-ecwcompress/src-test/EcwBandasLandsat.java
1
import es.gva.cit.jecwcompress.*;
2
import es.gva.cit.jgdal.*;
3

  
4
public class EcwBandasLandsat{
5
	
6
	public static void Uso(){
7
		System.out.println("Uso 1: Comprime una ventana de la imagen.");
8
		System.out.println("	java TifToEcw file-src file-dst compresi?n num_bandas(3 ? 5)");
9
	}
10
	
11
	public static void main(String[] args){
12
 
13
	  Gdal[] gdalimgs=null;
14
	  
15
	  int nbandas=0;
16
	  
17
	  NCSEcwCompressClient client;
18
	  ReadImgs lectura=null;
19
	  String[] images;
20
	  
21
	  if(args.length != 3){
22
	  	EcwBandasLandsat.Uso();
23
	  	return;
24
	  }
25
	  
26
	  nbandas = Integer.parseInt(args[2]);
27
	  if(nbandas!=3 && nbandas!=6){
28
	  	EcwBandasLandsat.Uso();
29
	  	return;
30
	  }
31
	  	
32

  
33
  	  images=new String[nbandas];
34
  	  gdalimgs =new Gdal[nbandas];
35
  	  for(int i=0;i<nbandas;i++)gdalimgs[i]=new Gdal();
36
	  
37
	  if(nbandas==6){
38
		  for(int i=0;i<nbandas-1;i++)
39
		  	images[i] = new String(args[0]+(i+1)+"0.tif");
40
	      images[5] = new String(args[0]+"70.tif");
41
	  }else if(nbandas==3){
42
		  images[0] = new String(args[0]+"30.tif");
43
		  images[1] = new String(args[0]+"20.tif");
44
		  images[2] = new String(args[0]+"10.tif");
45
	  }
46
	  
47
	  try{
48
		for(int i=0;i<nbandas;i++){
49
  			gdalimgs[i].open(images[i],Gdal.GA_ReadOnly);
50
  			System.out.println(images[i]);
51
  		}
52
	  }catch(Exception ge){
53
		ge.printStackTrace();
54
		//...........
55
	  }
56
	  
57
	  GdalRasterBand mirasterband=null;  
58
	  String st;
59
	  int nxsize=0;
60
	  int nysize=0;
61
	  int widthcompress = 0;
62
	  int heightcompress = 0;
63
	  int rastercount=nbandas;
64
	  String rasterband; 
65
	  GeoTransform gt=null;	  
66
	  	  
67
	  try{
68
	    nxsize = gdalimgs[0].getRasterXSize();
69
	    nysize = gdalimgs[0].getRasterYSize();
70
	    System.out.println("N BANDAS="+rastercount+" SIZEX="+nxsize+" SIZEY="+nysize);	
71
	  }catch(GdalException ge){
72
	  						ge.printStackTrace();
73
	  						//...........
74
	  					   }
75
	
76
	  widthcompress = nxsize;
77
	  heightcompress = nysize;
78
	  
79
	  try{
80
	  	gt = gdalimgs[0].getGeoTransform();
81
	  	System.out.println("Origins = ("+gt.adfgeotransform[0]+","+gt.adfgeotransform[3]+")");
82
	  	System.out.println("Pixel Size = ("+gt.adfgeotransform[1]+","+gt.adfgeotransform[5]+")");
83
	  }catch(GdalException e){
84
	  		System.out.println("No puedo obtener el array geoTransform.");
85
			e.printStackTrace();
86
			//...........
87
	  }
88
	  
89
	  try{
90
	  	client = new NCSEcwCompressClient();
91
	  	
92
	  	if(nbandas==6)client.setOutputFilename(args[0]+"123457multibanda.ecw");
93
	  	else if(nbandas==3)client.setOutputFilename(args[0]+"321multibanda.ecw");
94
	  	client.setInputFilename("");
95
	    client.setTargetCompress(Double.parseDouble(args[1]));
96
	    client.setInOutSizeX(widthcompress);
97
	    client.setInOutSizeY(heightcompress);
98
	    client.setInputBands(rastercount);
99
	    
100

  
101
	    client.setCompressFormat(CompressFormat.COMPRESS_MULTI);
102
		
103
		
104
		client.setCellIncrementX(gt.adfgeotransform[1]);
105
		client.setCellIncrementY(gt.adfgeotransform[5]);
106
		client.setOriginX(gt.adfgeotransform[0]);
107
		client.setOriginY(gt.adfgeotransform[3]);
108
		client.setCellSizeUnits(1);
109
		
110
			
111
		lectura = new ReadImgs(gdalimgs, client, widthcompress, heightcompress, nbandas);
112
		client.NCSEcwCompressOpen(false);
113
		client.NCSEcwCompress(lectura);
114
		client.NCSEcwCompressClose();
115
	  			
116
	  }catch(EcwException e){
117
		e.printStackTrace();
118
		//...........
119
	  }
120
	  
121
	   		  
122
	  try{	  	    	    
123
	  	 for(int i=0;i<nbandas;i++)gdalimgs[i].close();
124
	  }catch(GdalException e){
125
	  							e.printStackTrace();
126
	  						 }
127
	  
128
	  
129
	}  
130
}
131

  
132
/**
133
 *
134
 * Para la lectura hay que hacer una clase que extienda de JniObject e implemente ReadCallBack
135
 * . Esto obliga a crear un m?todo loadBuffer. En el hay que meter la funcionalidad para que
136
 * llene el buffer. El buffer esta en la clase cliente y tendr? una longitud de 
137
 * ancho de una l?nea * n?mero de bandas
138
 */
139

  
140
class ReadImgs extends JniObject implements ReadCallBack {
141
	
142
	private GdalBuffer[] buffers;
143
	private GdalRasterBand mirasterband=null;
144
	private Gdal[] gdalimgs=null;
145
	private NCSEcwCompressClient client=null;
146
	private int width, height;
147
		
148
	public ReadImgs(Gdal[] g, NCSEcwCompressClient client, int width, int height, int nbandas){
149
		gdalimgs = g;
150
		this.client = client;
151
		this.width = width;
152
		this.height = height;
153
		buffers = new GdalBuffer[nbandas];
154
		
155
	}
156
	
157
	public void loadBuffer(){
158
	
159
		try{
160
			for(int iBand=0;iBand<gdalimgs.length;iBand++){
161
				mirasterband=gdalimgs[iBand].getRasterBand(1);
162
		  		buffers[iBand] = mirasterband.readRaster(0, nNextLine, width, 1, width, 1, 1);
163
		  		for(int pos=0; pos<width; pos++){
164
		  			client.buffer[pos+(width*iBand)]=buffers[iBand].buffByte[pos];
165
		  		}
166
			}
167
	  	}catch(GdalException e){ 
168
	  		System.out.println("Error en la lectura de lineas con Gdal.");
169
	  		System.exit(1);
170
	  	}
171
	  	
172
	  	 
173
	  			
174
	}
175
	
176
	public void updatePercent(){
177
		System.out.println(client.getPercent()+"%");
178
	}
179
}
0 180

  
trunk/libraries/libjni-ecwcompress/doc/deprecated-list.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_03) on Tue May 10 10:26:43 CEST 2005 -->
6
<TITLE>
7
Deprecated List
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="Deprecated List";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
37
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
40
  </TR>
41
</TABLE>
42
</TD>
43
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
44
</EM>
45
</TD>
46
</TR>
47

  
48
<TR>
49
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
50
&nbsp;PREV&nbsp;
51
&nbsp;NEXT</FONT></TD>
52
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
53
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
54
&nbsp;<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
55
&nbsp;<SCRIPT type="text/javascript">
56
  <!--
57
  if(window==top) {
58
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
59
  }
60
  //-->
61
</SCRIPT>
62
<NOSCRIPT>
63
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
64
</NOSCRIPT>
65

  
66
</FONT></TD>
67
</TR>
68
</TABLE>
69
<A NAME="skip-navbar_top"></A>
70
<!-- ========= END OF TOP NAVBAR ========= -->
71

  
72
<HR>
73
<CENTER>
74
<H2>
75
<B>Deprecated API</B></H2>
76
</CENTER>
77
<HR>
78

  
79

  
80
<!-- ======= START OF BOTTOM NAVBAR ====== -->
81
<A NAME="navbar_bottom"><!-- --></A>
82
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
83
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
84
<TR>
85
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
86
<A NAME="navbar_bottom_firstrow"><!-- --></A>
87
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
88
  <TR ALIGN="center" VALIGN="top">
89
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
90
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
91
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
92
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT>&nbsp;</TD>
93
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
94
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
95
  </TR>
96
</TABLE>
97
</TD>
98
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
99
</EM>
100
</TD>
101
</TR>
102

  
103
<TR>
104
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
105
&nbsp;PREV&nbsp;
106
&nbsp;NEXT</FONT></TD>
107
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
108
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
109
&nbsp;<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
110
&nbsp;<SCRIPT type="text/javascript">
111
  <!--
112
  if(window==top) {
113
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
114
  }
115
  //-->
116
</SCRIPT>
117
<NOSCRIPT>
118
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
119
</NOSCRIPT>
120

  
121
</FONT></TD>
122
</TR>
123
</TABLE>
124
<A NAME="skip-navbar_bottom"></A>
125
<!-- ======== END OF BOTTOM NAVBAR ======= -->
126

  
127
<HR>
128

  
129
</BODY>
130
</HTML>
0 131

  
trunk/libraries/libjni-ecwcompress/doc/allclasses-noframe.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_03) on Tue May 10 10:26:43 CEST 2005 -->
6
<TITLE>
7
All Classes
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12

  
13

  
14
</HEAD>
15

  
16
<BODY BGCOLOR="white">
17
<FONT size="+1" CLASS="FrameHeadingFont">
18
<B>All Classes</B></FONT>
19
<BR>
20

  
21
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
22
<TR>
23
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="es/gva/cit/jecwcompress/CellSizeUnits.html" title="class in es.gva.cit.jecwcompress">CellSizeUnits</A>
24
<BR>
25
<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
26
<BR>
27
<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>
28
<BR>
29
<A HREF="es/gva/cit/jecwcompress/EcwException.html" title="class in es.gva.cit.jecwcompress">EcwException</A>
30
<BR>
31
<A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress">JNIBase</A>
32
<BR>
33
<A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress">JniObject</A>
34
<BR>
35
<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
36
<BR>
37
<A HREF="es/gva/cit/jecwcompress/NCSError.html" title="class in es.gva.cit.jecwcompress">NCSError</A>
38
<BR>
39
<A HREF="es/gva/cit/jecwcompress/ReadCallBack.html" title="interface in es.gva.cit.jecwcompress"><I>ReadCallBack</I></A>
40
<BR>
41
</FONT></TD>
42
</TR>
43
</TABLE>
44

  
45
</BODY>
46
</HTML>
0 47

  
trunk/libraries/libjni-ecwcompress/doc/help-doc.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_03) on Tue May 10 10:26:43 CEST 2005 -->
6
<TITLE>
7
API Help
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="API Help";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</TD>
40
  </TR>
41
</TABLE>
42
</TD>
43
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
44
</EM>
45
</TD>
46
</TR>
47

  
48
<TR>
49
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
50
&nbsp;PREV&nbsp;
51
&nbsp;NEXT</FONT></TD>
52
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
53
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
54
&nbsp;<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
55
&nbsp;<SCRIPT type="text/javascript">
56
  <!--
57
  if(window==top) {
58
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
59
  }
60
  //-->
61
</SCRIPT>
62
<NOSCRIPT>
63
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
64
</NOSCRIPT>
65

  
66
</FONT></TD>
67
</TR>
68
</TABLE>
69
<A NAME="skip-navbar_top"></A>
70
<!-- ========= END OF TOP NAVBAR ========= -->
71

  
72
<HR>
73
<CENTER>
74
<H1>
75
How This API Document Is Organized</H1>
76
</CENTER>
77
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
78
Package</H3>
79
<BLOCKQUOTE>
80

  
81
<P>
82
Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
83
<LI>Interfaces (italic)<LI>Classes<LI>Exceptions<LI>Errors</UL>
84
</BLOCKQUOTE>
85
<H3>
86
Class/Interface</H3>
87
<BLOCKQUOTE>
88

  
89
<P>
90
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
91
<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
92
<P>
93
<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
94
<P>
95
<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
96
Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
97
<H3>
98
Tree (Class Hierarchy)</H3>
99
<BLOCKQUOTE>
100
There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
101
<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
102
</BLOCKQUOTE>
103
<H3>
104
Deprecated API</H3>
105
<BLOCKQUOTE>
106
The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
107
<H3>
108
Index</H3>
109
<BLOCKQUOTE>
110
The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
111
<H3>
112
Prev/Next</H3>
113
These links take you to the next or previous class, interface, package, or related page.<H3>
114
Frames/No Frames</H3>
115
These links show and hide the HTML frames.  All pages are available with or without frames.
116
<P>
117
<H3>
118
Serialized Form</H3>
119
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
120
<P>
121
<FONT SIZE="-1">
122
<EM>
123
This help file applies to API documentation generated using the standard doclet.</EM>
124
</FONT>
125
<BR>
126
<HR>
127

  
128

  
129
<!-- ======= START OF BOTTOM NAVBAR ====== -->
130
<A NAME="navbar_bottom"><!-- --></A>
131
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
132
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
133
<TR>
134
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
135
<A NAME="navbar_bottom_firstrow"><!-- --></A>
136
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
137
  <TR ALIGN="center" VALIGN="top">
138
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
139
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
140
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
141
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
142
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
143
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</TD>
144
  </TR>
145
</TABLE>
146
</TD>
147
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
148
</EM>
149
</TD>
150
</TR>
151

  
152
<TR>
153
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
154
&nbsp;PREV&nbsp;
155
&nbsp;NEXT</FONT></TD>
156
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
157
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
158
&nbsp;<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
159
&nbsp;<SCRIPT type="text/javascript">
160
  <!--
161
  if(window==top) {
162
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
163
  }
164
  //-->
165
</SCRIPT>
166
<NOSCRIPT>
167
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
168
</NOSCRIPT>
169

  
170
</FONT></TD>
171
</TR>
172
</TABLE>
173
<A NAME="skip-navbar_bottom"></A>
174
<!-- ======== END OF BOTTOM NAVBAR ======= -->
175

  
176
<HR>
177

  
178
</BODY>
179
</HTML>
0 180

  
trunk/libraries/libjni-ecwcompress/doc/serialized-form.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_03) on Tue May 10 10:26:43 CEST 2005 -->
6
<TITLE>
7
Serialized Form
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="Serialized Form";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
40
  </TR>
41
</TABLE>
42
</TD>
43
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
44
</EM>
45
</TD>
46
</TR>
47

  
48
<TR>
49
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
50
&nbsp;PREV&nbsp;
51
&nbsp;NEXT</FONT></TD>
52
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
53
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
54
&nbsp;<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
55
&nbsp;<SCRIPT type="text/javascript">
56
  <!--
57
  if(window==top) {
58
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
59
  }
60
  //-->
61
</SCRIPT>
62
<NOSCRIPT>
63
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
64
</NOSCRIPT>
65

  
66
</FONT></TD>
67
</TR>
68
</TABLE>
69
<A NAME="skip-navbar_top"></A>
70
<!-- ========= END OF TOP NAVBAR ========= -->
71

  
72
<HR>
73
<CENTER>
74
<H1>
75
Serialized Form</H1>
76
</CENTER>
77
<A NAME="es.gva.cit.jecwcompress.EcwException"><!-- --></A>
78
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
79
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
80
<TD COLSPAN=2><FONT SIZE="+2">
81
<B>Class <A HREF="es/gva/cit/jecwcompress/EcwException.html" title="class in es.gva.cit.jecwcompress">es.gva.cit.jecwcompress.EcwException</A> extends java.lang.Exception implements Serializable</B></FONT></TD>
82
</TR>
83
</TABLE>
84

  
85
<P>
86

  
87
<P>
88
<HR>
89

  
90

  
91
<!-- ======= START OF BOTTOM NAVBAR ====== -->
92
<A NAME="navbar_bottom"><!-- --></A>
93
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
94
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
95
<TR>
96
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
97
<A NAME="navbar_bottom_firstrow"><!-- --></A>
98
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
99
  <TR ALIGN="center" VALIGN="top">
100
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
101
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
102
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
103
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
104
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
105
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
106
  </TR>
107
</TABLE>
108
</TD>
109
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
110
</EM>
111
</TD>
112
</TR>
113

  
114
<TR>
115
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
116
&nbsp;PREV&nbsp;
117
&nbsp;NEXT</FONT></TD>
118
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
119
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
120
&nbsp;<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
121
&nbsp;<SCRIPT type="text/javascript">
122
  <!--
123
  if(window==top) {
124
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
125
  }
126
  //-->
127
</SCRIPT>
128
<NOSCRIPT>
129
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
130
</NOSCRIPT>
131

  
132
</FONT></TD>
133
</TR>
134
</TABLE>
135
<A NAME="skip-navbar_bottom"></A>
136
<!-- ======== END OF BOTTOM NAVBAR ======= -->
137

  
138
<HR>
139

  
140
</BODY>
141
</HTML>
0 142

  
trunk/libraries/libjni-ecwcompress/doc/index-all.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.4.2_03) on Tue May 10 10:26:43 CEST 2005 -->
6
<TITLE>
7
Index
8
</TITLE>
9

  
10

  
11
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
12

  
13
<SCRIPT type="text/javascript">
14
function windowTitle()
15
{
16
    parent.document.title="Index";
17
}
18
</SCRIPT>
19

  
20
</HEAD>
21

  
22
<BODY BGCOLOR="white" onload="windowTitle();">
23

  
24

  
25
<!-- ========= START OF TOP NAVBAR ======= -->
26
<A NAME="navbar_top"><!-- --></A>
27
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
28
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
29
<TR>
30
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
31
<A NAME="navbar_top_firstrow"><!-- --></A>
32
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
33
  <TR ALIGN="center" VALIGN="top">
34
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
35
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
36
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
38
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
39
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
40
  </TR>
41
</TABLE>
42
</TD>
43
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
44
</EM>
45
</TD>
46
</TR>
47

  
48
<TR>
49
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
50
&nbsp;PREV&nbsp;
51
&nbsp;NEXT</FONT></TD>
52
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
53
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
54
&nbsp;<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
55
&nbsp;<SCRIPT type="text/javascript">
56
  <!--
57
  if(window==top) {
58
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
59
  }
60
  //-->
61
</SCRIPT>
62
<NOSCRIPT>
63
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
64
</NOSCRIPT>
65

  
66
</FONT></TD>
67
</TR>
68
</TABLE>
69
<A NAME="skip-navbar_top"></A>
70
<!-- ========= END OF TOP NAVBAR ========= -->
71

  
72
<A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_U_">U</A> <HR>
73
<A NAME="_B_"><!-- --></A><H2>
74
<B>B</B></H2>
75
<DL>
76
<DT><A HREF="es/gva/cit/jecwcompress/JNIBase.html#baseSimpleFunctions(int, java.lang.String, java.lang.String)"><B>baseSimpleFunctions(int, String, String)</B></A> - 
77
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress">JNIBase</A>
78
<DD>Funci?n que sirve como base para funcionalidades de gdal que admiten como par?metro un entero y devuelven un entero.
79
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#buffer"><B>buffer</B></A> - 
80
Variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
81
<DD>&nbsp;
82
</DL>
83
<HR>
84
<A NAME="_C_"><!-- --></A><H2>
85
<B>C</B></H2>
86
<DL>
87
<DT><A HREF="es/gva/cit/jecwcompress/CompressHint.html#COMPRESS_HINT_BEST"><B>COMPRESS_HINT_BEST</B></A> - 
88
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>
89
<DD>&nbsp;
90
<DT><A HREF="es/gva/cit/jecwcompress/CompressHint.html#COMPRESS_HINT_FAST"><B>COMPRESS_HINT_FAST</B></A> - 
91
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>
92
<DD>&nbsp;
93
<DT><A HREF="es/gva/cit/jecwcompress/CompressHint.html#COMPRESS_HINT_INTERNET"><B>COMPRESS_HINT_INTERNET</B></A> - 
94
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>
95
<DD>&nbsp;
96
<DT><A HREF="es/gva/cit/jecwcompress/CompressHint.html#COMPRESS_HINT_NONE"><B>COMPRESS_HINT_NONE</B></A> - 
97
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>
98
<DD>&nbsp;
99
<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html#COMPRESS_MULTI"><B>COMPRESS_MULTI</B></A> - 
100
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
101
<DD>&nbsp;
102
<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html#COMPRESS_NONE"><B>COMPRESS_NONE</B></A> - 
103
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
104
<DD>&nbsp;
105
<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html#COMPRESS_RGB"><B>COMPRESS_RGB</B></A> - 
106
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
107
<DD>&nbsp;
108
<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html#COMPRESS_UINT8"><B>COMPRESS_UINT8</B></A> - 
109
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
110
<DD>&nbsp;
111
<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html#COMPRESS_YUV"><B>COMPRESS_YUV</B></A> - 
112
Static variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
113
<DD>&nbsp;
114
<DT><A HREF="es/gva/cit/jecwcompress/CellSizeUnits.html" title="class in es.gva.cit.jecwcompress"><B>CellSizeUnits</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CellSizeUnits.html" title="class in es.gva.cit.jecwcompress">CellSizeUnits</A>.<DD>&nbsp;<DT><A HREF="es/gva/cit/jecwcompress/CellSizeUnits.html#CellSizeUnits()"><B>CellSizeUnits()</B></A> - 
115
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CellSizeUnits.html" title="class in es.gva.cit.jecwcompress">CellSizeUnits</A>
116
<DD>&nbsp;
117
<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress"><B>CompressFormat</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>.<DD>Clase que contiene las constantes para los tipos de compresi?n<DT><A HREF="es/gva/cit/jecwcompress/CompressFormat.html#CompressFormat()"><B>CompressFormat()</B></A> - 
118
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressFormat.html" title="class in es.gva.cit.jecwcompress">CompressFormat</A>
119
<DD>&nbsp;
120
<DT><A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress"><B>CompressHint</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>.<DD>&nbsp;<DT><A HREF="es/gva/cit/jecwcompress/CompressHint.html#CompressHint()"><B>CompressHint()</B></A> - 
121
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/CompressHint.html" title="class in es.gva.cit.jecwcompress">CompressHint</A>
122
<DD>&nbsp;
123
<DT><A HREF="es/gva/cit/jecwcompress/JNIBase.html#cPtr"><B>cPtr</B></A> - 
124
Variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress">JNIBase</A>
125
<DD>&nbsp;
126
<DT><A HREF="es/gva/cit/jecwcompress/JniObject.html#cPtr"><B>cPtr</B></A> - 
127
Variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress">JniObject</A>
128
<DD>&nbsp;
129
</DL>
130
<HR>
131
<A NAME="_E_"><!-- --></A><H2>
132
<B>E</B></H2>
133
<DL>
134
<DT><A HREF="es/gva/cit/jecwcompress/EcwException.html" title="class in es.gva.cit.jecwcompress"><B>EcwException</B></A> - exception es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/EcwException.html" title="class in es.gva.cit.jecwcompress">EcwException</A>.<DD>Es generada cuando los c?digos de retorno de las funciones del compresor de Ecw significan que algo ha ido mal.<DT><A HREF="es/gva/cit/jecwcompress/EcwException.html#EcwException(java.lang.String)"><B>EcwException(String)</B></A> - 
135
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/EcwException.html" title="class in es.gva.cit.jecwcompress">EcwException</A>
136
<DD>&nbsp;
137
<DT><A HREF="es/gva/cit/jecwcompress/NCSError.html#ErrorToString(int)"><B>ErrorToString(int)</B></A> - 
138
Static method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSError.html" title="class in es.gva.cit.jecwcompress">NCSError</A>
139
<DD>Conversi?n de un c?digo de error pasado por par?metro a cadena
140
<DT><A HREF="es/gva/cit/jecwcompress/package-summary.html"><B>es.gva.cit.jecwcompress</B></A> - package es.gva.cit.jecwcompress<DD>&nbsp;</DL>
141
<HR>
142
<A NAME="_F_"><!-- --></A><H2>
143
<B>F</B></H2>
144
<DL>
145
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#finalize()"><B>finalize()</B></A> - 
146
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
147
<DD>&nbsp;
148
</DL>
149
<HR>
150
<A NAME="_G_"><!-- --></A><H2>
151
<B>G</B></H2>
152
<DL>
153
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#getPercent()"><B>getPercent()</B></A> - 
154
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
155
<DD>Devuelve la cantidad de imagen comprimida en tanto por cien.
156
<DT><A HREF="es/gva/cit/jecwcompress/JNIBase.html#getPtro()"><B>getPtro()</B></A> - 
157
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress">JNIBase</A>
158
<DD>&nbsp;
159
<DT><A HREF="es/gva/cit/jecwcompress/JniObject.html#getPtro()"><B>getPtro()</B></A> - 
160
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress">JniObject</A>
161
<DD>Obtiene la direcci?n de memoria
162
</DL>
163
<HR>
164
<A NAME="_J_"><!-- --></A><H2>
165
<B>J</B></H2>
166
<DL>
167
<DT><A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress"><B>JNIBase</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress">JNIBase</A>.<DD>Clase base para todas las funcionalidades jni. <DT><A HREF="es/gva/cit/jecwcompress/JNIBase.html#JNIBase()"><B>JNIBase()</B></A> - 
168
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JNIBase.html" title="class in es.gva.cit.jecwcompress">JNIBase</A>
169
<DD>&nbsp;
170
<DT><A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress"><B>JniObject</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress">JniObject</A>.<DD>Clase de la que debe heredar el servidor de datos creado por el cliente<DT><A HREF="es/gva/cit/jecwcompress/JniObject.html#JniObject()"><B>JniObject()</B></A> - 
171
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress">JniObject</A>
172
<DD>&nbsp;
173
</DL>
174
<HR>
175
<A NAME="_L_"><!-- --></A><H2>
176
<B>L</B></H2>
177
<DL>
178
<DT><A HREF="es/gva/cit/jecwcompress/ReadCallBack.html#loadBuffer()"><B>loadBuffer()</B></A> - 
179
Method in interface es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/ReadCallBack.html" title="interface in es.gva.cit.jecwcompress">ReadCallBack</A>
180
<DD>Funci?n para la carga de datos. 
181
</DL>
182
<HR>
183
<A NAME="_N_"><!-- --></A><H2>
184
<B>N</B></H2>
185
<DL>
186
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#NCSEcwCompress(es.gva.cit.jecwcompress.ReadCallBack)"><B>NCSEcwCompress(ReadCallBack)</B></A> - 
187
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
188
<DD>Realiza la funci?n de compresi?n
189
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress"><B>NCSEcwCompressClient</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>.<DD>Esta clase contiene las funciones para b?sicas para la compresi?n de Ecw. <DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#NCSEcwCompressClient()"><B>NCSEcwCompressClient()</B></A> - 
190
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
191
<DD>Contructor
192
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#NCSEcwCompressClose()"><B>NCSEcwCompressClose()</B></A> - 
193
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
194
<DD>Cierra el compresor
195
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#NCSEcwCompressOpen(boolean)"><B>NCSEcwCompressOpen(boolean)</B></A> - 
196
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
197
<DD>Inicializa el compresor
198
<DT><A HREF="es/gva/cit/jecwcompress/NCSError.html" title="class in es.gva.cit.jecwcompress"><B>NCSError</B></A> - class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSError.html" title="class in es.gva.cit.jecwcompress">NCSError</A>.<DD>Clase que realiza la conversi?n de los c?digos de error que devuelve las funciones C
199
 en cadenas para que pueda ser mostrado el significado del error al usuario.<DT><A HREF="es/gva/cit/jecwcompress/NCSError.html#NCSError()"><B>NCSError()</B></A> - 
200
Constructor for class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSError.html" title="class in es.gva.cit.jecwcompress">NCSError</A>
201
<DD>&nbsp;
202
<DT><A HREF="es/gva/cit/jecwcompress/JniObject.html#nNextLine"><B>nNextLine</B></A> - 
203
Variable in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/JniObject.html" title="class in es.gva.cit.jecwcompress">JniObject</A>
204
<DD>&nbsp;
205
</DL>
206
<HR>
207
<A NAME="_R_"><!-- --></A><H2>
208
<B>R</B></H2>
209
<DL>
210
<DT><A HREF="es/gva/cit/jecwcompress/ReadCallBack.html" title="interface in es.gva.cit.jecwcompress"><B>ReadCallBack</B></A> - interface es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/ReadCallBack.html" title="interface in es.gva.cit.jecwcompress">ReadCallBack</A>.<DD>Interfaz que debe implementar el cliente de compresi?n para que se pueda hacer llamadas
211
 a las funciones java  que cargan los buffers, desde el espacio C.</DL>
212
<HR>
213
<A NAME="_S_"><!-- --></A><H2>
214
<B>S</B></H2>
215
<DL>
216
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setActualCompression(double)"><B>setActualCompression(double)</B></A> - 
217
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
218
<DD>&nbsp;
219
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setBlockSizeX(int)"><B>setBlockSizeX(int)</B></A> - 
220
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
221
<DD>Asigna el tama?o de bloque en x
222
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setBlockSizeY(int)"><B>setBlockSizeY(int)</B></A> - 
223
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
224
<DD>Asigna el tama?o de bloque en y
225
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCellIncrementX(double)"><B>setCellIncrementX(double)</B></A> - 
226
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
227
<DD>&nbsp;
228
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCellIncrementY(double)"><B>setCellIncrementY(double)</B></A> - 
229
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
230
<DD>&nbsp;
231
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCellSizeUnits(int)"><B>setCellSizeUnits(int)</B></A> - 
232
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
233
<DD>Asigna el tama?o de celda
234
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCompressFormat(int)"><B>setCompressFormat(int)</B></A> - 
235
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
236
<DD>Asigna el formato de compresi?n.
237
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCompressHint(int)"><B>setCompressHint(int)</B></A> - 
238
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
239
<DD>Asigna el Compress Hint.
240
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCompressionMBSec(double)"><B>setCompressionMBSec(double)</B></A> - 
241
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
242
<DD>&nbsp;
243
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setCompressionSeconds(double)"><B>setCompressionSeconds(double)</B></A> - 
244
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
245
<DD>&nbsp;
246
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setDatum(java.lang.String)"><B>setDatum(String)</B></A> - 
247
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
248
<DD>Asigna el datum
249
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setInOutSizeX(int)"><B>setInOutSizeX(int)</B></A> - 
250
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
251
<DD>Asigna el tama?o de la imagen de salida en x
252
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setInOutSizeY(int)"><B>setInOutSizeY(int)</B></A> - 
253
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
254
<DD>Asigna el tama?o de la imagen de salida en y
255
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setInputBands(int)"><B>setInputBands(int)</B></A> - 
256
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
257
<DD>Asigna el n?mero de bandas de entrada
258
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setInputFilename(java.lang.String)"><B>setInputFilename(String)</B></A> - 
259
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
260
<DD>Asigna el nombre del fichero de entrada
261
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setInputSize(long)"><B>setInputSize(long)</B></A> - 
262
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
263
<DD>&nbsp;
264
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setOriginX(double)"><B>setOriginX(double)</B></A> - 
265
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
266
<DD>&nbsp;
267
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setOriginY(double)"><B>setOriginY(double)</B></A> - 
268
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
269
<DD>&nbsp;
270
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setOutputBands(int)"><B>setOutputBands(int)</B></A> - 
271
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
272
<DD>Asigna el n?mero de bandas de salida
273
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setOutputFilename(java.lang.String)"><B>setOutputFilename(String)</B></A> - 
274
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
275
<DD>Asigna el nombre del fichero de salida
276
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setOutputSize(long)"><B>setOutputSize(long)</B></A> - 
277
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
278
<DD>&nbsp;
279
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setProjection(java.lang.String)"><B>setProjection(String)</B></A> - 
280
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
281
<DD>Asigna la proyecci?n
282
<DT><A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html#setTargetCompress(double)"><B>setTargetCompress(double)</B></A> - 
283
Method in class es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/NCSEcwCompressClient.html" title="class in es.gva.cit.jecwcompress">NCSEcwCompressClient</A>
284
<DD>Asigna el nivel de compresi?n
285
</DL>
286
<HR>
287
<A NAME="_U_"><!-- --></A><H2>
288
<B>U</B></H2>
289
<DL>
290
<DT><A HREF="es/gva/cit/jecwcompress/ReadCallBack.html#updatePercent()"><B>updatePercent()</B></A> - 
291
Method in interface es.gva.cit.jecwcompress.<A HREF="es/gva/cit/jecwcompress/ReadCallBack.html" title="interface in es.gva.cit.jecwcompress">ReadCallBack</A>
292
<DD>Funci?n que es llamada cada uno por cien que sea comprimido. 
293
</DL>
294
<HR>
295
<A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_U_">U</A> 
296

  
297
<!-- ======= START OF BOTTOM NAVBAR ====== -->
298
<A NAME="navbar_bottom"><!-- --></A>
299
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
300
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
301
<TR>
302
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
303
<A NAME="navbar_bottom_firstrow"><!-- --></A>
304
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
305
  <TR ALIGN="center" VALIGN="top">
306
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
307
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
308
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
309
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
310
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
311
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
312
  </TR>
313
</TABLE>
314
</TD>
315
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
316
</EM>
317
</TD>
318
</TR>
319

  
320
<TR>
321
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
322
&nbsp;PREV&nbsp;
323
&nbsp;NEXT</FONT></TD>
324
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
325
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
326
&nbsp;<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
327
&nbsp;<SCRIPT type="text/javascript">
328
  <!--
329
  if(window==top) {
330
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
331
  }
332
  //-->
333
</SCRIPT>
334
<NOSCRIPT>
335
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
336
</NOSCRIPT>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff