package util.net;


/** 
 * An interface for objects that can handle Objects received from the
 * network by a Client.
 */
public interface InputHandler
{
    public void handleInput (Object o);
}

