Class infixView.InfixGUI
- public class InfixGUI
- extends AFrame
This is the GUI for the infix calculator model
For a graphical calculator use this as the main.

_calc
_display
- // the "model"

InfixGUI
()
- Default constructor, uses title of "Cheap Calculator"

initialize
()
- Initializes the GUI
main
(String[])
- Main function to start of the program

_calc
private InfixCalc _calc
_display
private JTextField _display
- // the "model"

InfixGUI
public InfixGUI()
- Default constructor, uses title of "Cheap Calculator"

initialize
protected void initialize()
- Initializes the GUI
main
public static void main(String[] args)
- Main function to start of the program. No input arguments required.
Simply instantiates the GUI.