//******************************************************************** // BMI.java // // Sets up a GUI to calculate body mass index. //******************************************************************** public class BMI { //----------------------------------------------------------------- // Creates and displays the temperature converter GUI. //----------------------------------------------------------------- public static void main (String[] args) { //Create a new BMIGUI object BMIGUI BMICalculater = new BMIGUI () ; //call the display method for your BMIGUI object BMICalculater.display(); } }