MsgSender.java

/**
Any object that knows how to send a message.
*/
public interface MsgSender
{
    void sendMessage(Object o);
}