/* * TempretureConversionApp.java * * Created on 21 April 2007, 12:00 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ /** * * @author Darren Frendo */ import java.io.*; import javax.swing.JFrame; public class TempretureConversionApp { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // TODO code application logic here TempretureForm newTempretureForm = new TempretureForm(); newTempretureForm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); newTempretureForm.setSize(450, 200); //set frame size newTempretureForm.setVisible(true); } }