Uses of Class
org.relayirc.chatengine.Channel

Packages that use Channel
org.relayirc.chatengine The org.relayirc.chatengine provides higher level IRC classes such as Server, Channel and User. 
 

Uses of Channel in org.relayirc.chatengine
 

Methods in org.relayirc.chatengine that return Channel
 Channel ServerEvent.getChannel()
          Get associated Channel object, or null if not applicable.
 Channel Server.getChannel(java.lang.String name)
          Returns view for specified channel, or null if there is none.
 Channel Server.getChannel(java.lang.String name, boolean force)
          Returns channel object specified by name, creates one if necessary.
 Channel ChannelSearch.getChannelAt(int index)
          Number of channels found in most recent search, or null on error.
 

Methods in org.relayirc.chatengine with parameters of type Channel
 void ChannelSearchListener.searchFound(Channel chan)
          Called when channel is found that meets search criteria.
 void Server.sendJoin(Channel chan)
          Join specified channel by sending JOIN command to IRC server, adding channel object to server's channel collection and notifying listeners of channel join.
 void Server.sendPart(Channel chan, java.lang.String message)
          Send channel PART with the message, notify listeners and remove channel.
 

Constructors in org.relayirc.chatengine with parameters of type Channel
ChannelEvent(Channel src)
          Event with no associated values.
ChannelEvent(Channel src, java.lang.Object value)
          Event with an optional arbitrary value.
ChannelEvent(Channel src, java.lang.String originNick, java.lang.String originAddress, java.lang.Object value)
          Event with originating user and an optional arbitrary value.
ChannelEvent(Channel src, java.lang.String originNick, java.lang.String originAddress, java.lang.String subjectNick, java.lang.String subjectAddress, java.lang.Object value)
          Event with originating user, destination user and an optional arbitrary value.
ServerEvent(Server src, Channel channel)
          Event associated with a channel.