import javax.swing.JFrame; import org.gvsig.rasterTools.saveRaster.ui.info.EndInfoDialog; public class EndInfoPanelTest extends JFrame{ public EndInfoPanelTest(){ this.setSize(488,156); EndInfoDialog panel = new EndInfoDialog(); this.getContentPane().add(panel); this.show(); } /** * @param args */ public static void main(String[] args) { EndInfoPanelTest f = new EndInfoPanelTest(); } }