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


/**
 * ResultPanel displays the results of several different manipulations of three 
 * numbers.
 * 
 * @author Michael Rivers
 * @version May 16th, 2006
 */
public class ResultPanel extends JComponent
{
	// instance variables width, height, resultArea
	private int width, height;
	private JTextArea resultArea;
	

	/**
	 * Constructor for objects of class ResultPanel
	 */
	public ResultPanel()
	{
		width=360;
		height = 240;
		resultArea=new JTextArea("Result Pane",height,width);
	}

	
}

