java.lang.Object | +--JChat.JChatChannel
JChat Classe Canal / Channel Class
Field Summary | |
static int |
MAXUSERS
número máximo de usuários / maximum number of users allowed |
Constructor Summary | |
JChatChannel()
construtor padrão / default constructor |
|
JChatChannel(java.lang.String name)
cria um canal com um nome identificador / creates a channel with a name identifier |
Method Summary | |
void |
addUser(java.lang.String x)
adiciona um nick ao canal / adds a user to the channel |
java.util.Vector |
getActualUsers()
retorna uma lista com os usuários atuais / returns a list of actual users |
java.lang.String |
getName()
pega o nome do canal / gets the channel's ID |
java.lang.String |
getTopic()
retorna o tópico do canal / gets this channel's topic |
int |
getTotalUsers()
pega o número total de usuários no canal / gets the total users on the channel |
boolean |
removeUser(java.lang.String x)
remove um usuário do canal / removes a user from the channel |
void |
setTopic(java.lang.String titulo)
seta o tópico do canal / sets a channel's topic |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static int MAXUSERS
Constructor Detail |
public JChatChannel()
public JChatChannel(java.lang.String name)
name
- o nome do canal / the channel's IDMethod Detail |
public java.lang.String getTopic()
public java.lang.String getName()
public void setTopic(java.lang.String titulo)
titulo
- o novo tópico / the new topicpublic java.util.Vector getActualUsers()
public void addUser(java.lang.String x)
x
- a identificação / the user's idpublic boolean removeUser(java.lang.String x)
x
- a identificação do usuário / the user's idpublic int getTotalUsers()