package eclass.Main; import java.util.Collection; /** * * This is the class that govers how the conversations are handled. * * @author * @version * **/ public class Chat { /** Default Constructor **/ public Chat() { } protected Collection conv; protected int currentConv; protected boolean isVisible; }