
package polarDust.calculator;

/*
 * Copyright (c) 1996 Sorin Lazareanu, All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies.
 *
 */

import java.awt.*;

/**
 * Implements the common functionality for calculator panels.
 *
 * <br><br><a href=../source/polarDust/calculator/CalculatorPanel.java>
 * The source code.</a>
 *
 * @version 0.9, 1996.06.04
 * @author Sorin Lazareanu
 */

public class CalculatorPanel extends Panel {

	public void configure() {
	}

	public void stop() {
	}

	public String toString() {
		return "CalculatorPanel extends " + super.toString();
	}

}

