Statistics
| Revision:

root / branches / CqCMSDvp / libraries / libCq CMS for java.old / src / org / cresques / ui / CQSaveRaster.java @ 1764

History | View | Annotate | Download (559 Bytes)

1
/*
2
 * Created on 30-mar-2005
3
 *
4
 * TODO To change the template for this generated file go to
5
 * Window - Preferences - Java - Code Style - Code Templates
6
 */
7
package org.cresques.ui;
8

    
9
import java.awt.Container;
10

    
11
import org.cresques.cts.IProjection;
12
import org.cresques.px.PxLayerList;
13

    
14
/**
15
 * @author Nacho Brodin <brodin_ign@gva.es>
16
 *
17
 */
18
public interface CQSaveRaster {
19
        
20
        public void setLayerList(PxLayerList layerList);
21
        public void setProjection(IProjection prj);
22
        public void closeJDialog();
23
        public Container getContentPane();
24
        public void show();
25

    
26
}