Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.relayirc.chatengine.Channel

Uses of Channel in org.relayirc.chatengine
 

Fields in org.relayirc.chatengine declared as Channel
private  Channel ChatEngineEvent._channel
           
 

Methods in org.relayirc.chatengine that return Channel
 Channel ChatOptions.getChannelAt(int index)
          Get channel by index.
 Channel ChatEngineEvent.getChannel()
          Get associated Channel object, or null if not applicable.
private  Channel ChatEngine.getChannel(java.lang.String name)
          Returns view for specified channel, or null if there is none.
private  Channel ChatEngine.getChannel(java.lang.String name, boolean manditory)
          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 IChatEngine.sendJoin(Channel chan)
          Send join message to server for specified channel.
 void IChatEngine.sendPart(Channel chan)
          Send parting message to server.
 void ChatOptions.addChannel(Channel chan)
          Add channel to list of IRC channels frequented by user.
 void ChatOptions.removeChannel(Channel channel)
          Remove channel.
 void ChatEngine.sendJoin(Channel chan)
          Join specified channel by sending JOIN command to IRC server, adding channel object to engine's channel collection and notifying listeners of channel join.
 void ChatEngine.sendPart(Channel chan)
          Send channel part, notify listeners and remove channel.
 void ChannelSearchListener.searchFound(Channel chan)
          Called when channel is found that meets search criteria.
(package private)  void ChannelSearch.processChannel(Channel chan)
          Internal use.
 

Constructors in org.relayirc.chatengine with parameters of type Channel
ChatEngineEvent(ChatEngine src, Channel channel)
          Event associated with a 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.