/**
 * The requirements of the view for a container that uses the MVC pattern
 * for layout.
 *
 * @version 1.0
 * @author  Prof. David Bernstein, James Madison University
 */
public interface JContainerView
{
    /**
     * Set the text for all of the tool tips
     */
    public abstract void setToolTipText();

    /**
     * Setup this view (Required by JContainerView)
     */
    public abstract void setupView();
}
