irc
Class ChannelInfo

java.lang.Object
  |
  +--irc.ChannelInfo

public class ChannelInfo
extends java.lang.Object

Channel information.


Field Summary
 java.lang.String name
          Channel name.
 java.lang.String topic
          Channel topic.
 int userCount
          User count.
 
Constructor Summary
ChannelInfo(java.lang.String n, java.lang.String t, int c)
          Create a new ChannelInfo.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name
Channel name.


topic

public java.lang.String topic
Channel topic.


userCount

public int userCount
User count.

Constructor Detail

ChannelInfo

public ChannelInfo(java.lang.String n,
                   java.lang.String t,
                   int c)
Create a new ChannelInfo.

Parameters:
n - channel name.
t - channel topic.
c - user count.