Statistics
| Revision:

root / branches / F2 / extensions / extJCRS / src-test / org / gvsig / crs / gui / TransformationNadgridsPanelTest.java @ 10786

History | View | Annotate | Download (353 Bytes)

1
package org.gvsig.crs.gui;
2

    
3
import javax.swing.JFrame;
4

    
5
import org.gvsig.crs.gui.panels.TransformationNadgridsPanel;
6

    
7
public class TransformationNadgridsPanelTest {
8
        
9
        public static void main(String[] args){
10
                
11
                JFrame jFrame = new JFrame();
12
                jFrame.getContentPane().add(new NadsClass());
13
                jFrame.setSize(500, 300);
14
                jFrame.setVisible(true);        
15
        }
16

    
17
}