/***************************************************************
 * Source: @(#)$Id$
 * Scope:  View interface
 *
 *  12/14/1999  GVT  First Implementation
 ***************************************************************/

package gvt.mvc;

/**
 * This interface must be implemented from all Views
 *
 * @author   Giuseppe Vitillaro
 * @version  $Id$
 */
public interface View {
    /**
     * The model will call this method to update
     * the view
     */
    public void updateView ( Model model );
}
