/**
	* Defines a simple graphic calculator consisting of a display region
	* for accepting input and displaying results, and a number of buttons
	* for various operations.  The buttons respond "directly" when they are clicked.
	* They receive a standard <CODE>ActionEvent</CODE> from the
	* underlying windowing system.  They also need information about the
	* state of the calculator - among other things, the
	* current cumulated value, the new value to be combined with the
	* cumulated value, the last button clicked, etc., and this must be
	* made accessible separately (in this case, through the constructors,
	* or an accessor method).  The only buttons supplied here are: 
	* <CODE>ClearButton</CODE>, <CODE>EqButton</CODE>, <CODE>PlusButton</CODE>,
	* <CODE>TimesButton</CODE>.
	*
	* @author © 1998 Peter T. Sander
	* @version 1.3 (7/04/98)
	* @since 15/03/98
	*/
	
	
public class CalculatorWithTimes extends programming101.calculator.Calculator {
	private TimesButton timesButton;

	/**
		* No-args constructor.  Sets up the various calculator GUI components.
		*/
	public CalculatorWithTimes() {
		super();
		timesButton = new TimesButton(this);
		buttonPanel.add(timesButton);
		frame.setTitle("Calc with Times");
		frame.pack();
	}
}
