Statistics
| Revision:

root / branches / F2 / extensions / extJCRS / src / org / gvsig / crs / gui / dialog / CSSelectionDialog.java @ 10788

History | View | Annotate | Download (1.04 KB)

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

    
6
import java.awt.GridLayout;
7

    
8
import org.gvsig.crs.gui.CRSSelectionDialog;
9

    
10

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