import java.awt.*;
import javax.swing.*;


/**
 * InputPanel allows input of multiple values for work with.
 * 
 * @author Michael Rivers
 * @version May 16th, 2006
 */
public class InputPanel extends JComponent
{
	// instance variables width, height, textField1, and resultButton.
	private int width, height;
	private JTextField textField1;
	private JButton resultButton;

	/**
	 * Constructor for objects of class ResultPanel
	 */
	public InputPanel()
	{
		width=360;
		height = 240;
		textField1=new JTextField();
		
		this.add(textField1);
		resultButton = new JButton("Compute");
		this.add(resultButton);
	}
   
	
}

