//----------------------------------------------------------------------------
//
// MovingEllipse.java
//
// written by:    Simon Parsons
// last modified: 3rd August 2012
//

// Building on that moving ellipse example
//

import javax.swing.*;                                              // Use the swing library

public class SimpleCalc2{
	public static void main(String[] args){
		JFrame frame = new JFrame("My Simple Calculator");         // Set up frame
		frame.getContentPane().add(new CalcComponent2());          // Create new component
		frame.setSize(400,400);                                    // Set frame size
		frame.setVisible(true);                                    // Make frame visible
	}
}