Statistics
| Revision:

root / trunk / extensions / extGeoreferencing / src / com / iver / cit / gvsig / gui / Panels / AdjustGeorefPanel.java @ 3012

History | View | Annotate | Download (495 Bytes)

1
package com.iver.cit.gvsig.gui.Panels;
2

    
3
import javax.swing.JPanel;
4

    
5
public class AdjustGeorefPanel extends JPanel{
6

    
7
        
8
        /**
9
         * This is the default constructor
10
         */
11
        public AdjustGeorefPanel() {
12
                super();
13
                initialize();
14
        }
15

    
16
        /**
17
         * This method initializes this
18
         * 
19
         * @return void
20
         */
21
        private void initialize() {
22
        this.setPreferredSize(new java.awt.Dimension(400,240));
23
        this.setSize(new java.awt.Dimension(400,240));
24
        this.setLocation(new java.awt.Point(0,0));
25
        }
26

    
27
}