Fahrenheit and Centigrade with BreezyGUI
import java.awt.*;
import BreezyGUI.*;
public class ConversionWithBreezyGUI extends GBFrame {
private Label fahrenheitLabel
= addLabel ("Degrees Fahrenheit",1,1,1,1);
private IntegerField fahrenheitField
= addIntegerField (32 ,1,2,1,1);
private Label centigradeLabel
= addLabel ("Degrees Centigrade",2,1,1,1);
private IntegerField centigradeField
= addIntegerField (0 ,2,2,1,1);
private Button fahrenheitButton
= addButton ("Compute Fahrenheit",3,1,1,1);
private Button centigradeButton
= addButton ("Compute Centigrade",3,2,1,1);