package mvp;

import java.io.*;

/****
 *
 * Class Screen is a toolkit-independent definition of the physical display
 * screen on which GUI widgets are displayed.  In Java, the Screen type is not
 * necessary, since the Java runtime environment handles all screen details
 * transparently.  In other toolkits, the definition of Screen may be
 * necessary.
 *
 * @author Gene Fisher (gfisher@calpoly.edu)
 *
 */

public class Screen implements Serializable {}