Statistics
| Revision:

root / trunk / libraries / libJCRS / src / org / gvsig / crs / gui / dialog / CSSelectionDialog.java @ 7570

History | View | Annotate | Download (1007 Bytes)

1
/*
2
 * Created on 26-ene-2005
3
 */
4
package org.gvsig.crs.gui.dialog;
5

    
6
import java.awt.FlowLayout;
7
import java.awt.GridLayout;
8

    
9
import org.cresques.cts.IProjection;
10
import org.gvsig.crs.gui.CRSSelectionDialogPanel;
11

    
12

    
13
/**
14
 * @author Luis W. Sevilla (sevilla_lui@gva.es)
15
 */
16
public class CSSelectionDialog
17
        extends CRSSelectionDialogPanel{
18
        
19
        private static final long serialVersionUID = 1L;
20
        /**
21
         * 
22
         */
23
        public CSSelectionDialog() {
24
                super();
25
                this.init();
26
        }
27
        /**
28
         * This method initializes this
29
         * 
30
         * @return void
31
         */
32
        private void init() {
33
                this.setBounds(0, 0, 600, 400);
34
                this.setLayout(new GridLayout(0,1));
35
                this.setLayout(new FlowLayout(FlowLayout.CENTER,10,10));
36
                
37
        }
38
        
39
        
40
        /*public IProjection getProjection() {
41
                return (IProjection) getProjPanel().getProjection();
42
        }
43
        
44
        public void setProjection(IProjection proj) {
45
                lastProj = proj;
46
                getProjPanel().setProjection(proj);
47
        }
48
        
49
        public String getProjectionAbrev(){
50
                return  (String) getProjPanel().getProjection().getAbrev();
51
        }*/        
52
}