/* This is the abstract class - could be interface - which defines the services
provided by the server class.
*/
public abstract class Component {
public abstract boolean open(String filename);
public abstract String read(String filename);
public abstract boolean endOfFile(String filename);
public abstract void close(String filename);
} //end class Component