Statistics
| Revision:

root / trunk / extensions / extRasterTools / src-test / EndInfoPanelTest.java @ 12217

History | View | Annotate | Download (417 Bytes)

1 4486 nacho
2
3
import javax.swing.JFrame;
4
5 4548 nacho
import org.gvsig.rasterTools.saveRaster.ui.info.EndInfoDialog;
6 4486 nacho
7 4548 nacho
8 4486 nacho
public class EndInfoPanelTest extends JFrame{
9
10
        public EndInfoPanelTest(){
11 4532 nacho
                this.setSize(488,156);
12 4486 nacho
                EndInfoDialog panel = new EndInfoDialog();
13
14
                this.getContentPane().add(panel);
15
                this.show();
16
        }
17
        /**
18
         * @param args
19
         */
20
        public static void main(String[] args) {
21
                EndInfoPanelTest f = new EndInfoPanelTest();
22
        }
23
24
}