FileDocCategorySizeDatePackage
ChatState.javaAPI DocExample2548Sun Feb 08 21:34:02 GMT 2004darwinsys.chat

ChatState

public class ChatState extends Object

Fields Summary
public List
chat
The list of messages
public List
users
The list of users
public int
first
The lower bound of current messages
public int
last
The upper bound of current messages
Constructors Summary
public ChatState()

		chat = new ArrayList();
		users = new ArrayList();
		first = last = 0;
	
Methods Summary