Uses of Class
com.uwyn.drone.core.Channel

Packages that use Channel
com.uwyn.drone.core   
com.uwyn.drone.core.exceptions   
com.uwyn.drone.core.modulemessages   
com.uwyn.drone.modules   
com.uwyn.drone.modules.logmanagement   
com.uwyn.drone.modules.logmanagement.databasedrivers   
com.uwyn.drone.modules.logmanagement.exceptions   
com.uwyn.drone.modules.seenmanagement   
com.uwyn.drone.modules.seenmanagement.databasedrivers   
com.uwyn.drone.modules.seenmanagement.exceptions   
com.uwyn.drone.tools   
com.uwyn.drone.webui.elements.pub   
 

Uses of Channel in com.uwyn.drone.core
 

Methods in com.uwyn.drone.core that return Channel
 Channel Server.getChannel(String name)
           
 Channel Bot.getJoinedChannel(String name)
           
 

Methods in com.uwyn.drone.core with parameters of type Channel
 void Module.channelCommand(Bot bot, Channel channel, String nick, String command, String arguments, ServerMessage fullMessage)
           
 void Module.channelMessage(Bot bot, Channel channel, String nick, ServerMessage fullMessage)
           
 void AbstractModule.channelCommand(Bot bot, Channel channel, String nick, String command, String arguments, ServerMessage fullMessage)
           
 void AbstractModule.channelMessage(Bot bot, Channel channel, String nick, ServerMessage fullMessage)
           
 

Uses of Channel in com.uwyn.drone.core.exceptions
 

Methods in com.uwyn.drone.core.exceptions that return Channel
 Channel LeaveErrorException.getChannel()
           
 Channel JoinErrorException.getChannel()
           
 Channel ChannelMessageErrorException.getChannel()
           
 

Constructors in com.uwyn.drone.core.exceptions with parameters of type Channel
LeaveErrorException(Channel channel, Throwable cause)
           
JoinErrorException(Channel channel, Throwable cause)
           
ChannelMessageErrorException(Channel channel, String message, Throwable cause)
           
 

Uses of Channel in com.uwyn.drone.core.modulemessages
 

Constructors in com.uwyn.drone.core.modulemessages with parameters of type Channel
ChannelMessage(ServerMessage serverMessage, Channel channel)
           
ChannelCommand(ServerMessage serverMessage, Channel channel, String command, String arguments)
           
 

Uses of Channel in com.uwyn.drone.modules
 

Methods in com.uwyn.drone.modules with parameters of type Channel
 void Throughput.channelCommand(Bot bot, Channel channel, String nick, String command, String arguments, ServerMessage fullMessage)
           
 void Seen.channelCommand(Bot bot, Channel channel, String nick, String command, String arguments, ServerMessage fullMessage)
           
 void Seen.channelMessage(Bot bot, Channel channel, String nick, ServerMessage fullMessage)
           
 String Seen.processSeenWaiting(Bot bot, Channel channel, String seen)
           
 void Log.channelMessage(Bot bot, Channel channel, String nick, ServerMessage fullMessage)
           
 void Faq.channelCommand(Bot bot, Channel channel, String nick, String command, String arguments, ServerMessage fullMessage)
           
 

Uses of Channel in com.uwyn.drone.modules.logmanagement
 

Methods in com.uwyn.drone.modules.logmanagement with parameters of type Channel
 void LogManager.addLog(Date moment, Bot bot, Channel channel, ServerMessage serverMessage)
           
 boolean LogManager.searchLog(LogResultProcessor processor, Bot bot, Channel channel, String search)
           
 boolean LogManager.getLogMessages(LogResultProcessor processor, Bot bot, Channel channel, Calendar day)
           
protected  void DatabaseLogs._addLog(Insert addLog, Bot bot, Channel channel, ServerMessage serverMessage)
           
protected  boolean DatabaseLogs._searchLog(Select searchLog, LogResultProcessor processor, Bot bot, Channel channel, String search)
           
protected  boolean DatabaseLogs._getLogMessages(Select getLogMessages, LogResultProcessor processor, Bot bot, Channel channel, Calendar day)
           
 

Uses of Channel in com.uwyn.drone.modules.logmanagement.databasedrivers
 

Methods in com.uwyn.drone.modules.logmanagement.databasedrivers with parameters of type Channel
 void org_postgresql_Driver.addLog(Date moment, Bot bot, Channel channel, ServerMessage serverMessage)
           
 boolean org_postgresql_Driver.searchLog(LogResultProcessor processor, Bot bot, Channel channel, String search)
           
 boolean org_postgresql_Driver.getLogMessages(LogResultProcessor processor, Bot bot, Channel channel, Calendar day)
           
 void com_mysql_jdbc_Driver.addLog(Date moment, Bot bot, Channel channel, ServerMessage serverMessage)
           
 boolean com_mysql_jdbc_Driver.searchLog(LogResultProcessor processor, Bot bot, Channel channel, String search)
           
 boolean com_mysql_jdbc_Driver.getLogMessages(LogResultProcessor processor, Bot bot, Channel channel, Calendar day)
           
 

Uses of Channel in com.uwyn.drone.modules.logmanagement.exceptions
 

Methods in com.uwyn.drone.modules.logmanagement.exceptions that return Channel
 Channel SearchLogErrorException.getChannel()
           
 Channel InvalidSearchSyntaxException.getChannel()
           
 Channel GetLogMessagesErrorException.getChannel()
           
 Channel AddLogErrorException.getChannel()
           
 

Constructors in com.uwyn.drone.modules.logmanagement.exceptions with parameters of type Channel
SearchLogErrorException(Bot bot, Channel channel, String searchKey)
           
SearchLogErrorException(Bot bot, Channel channel, String search, DatabaseException cause)
           
InvalidSearchSyntaxException(Bot bot, Channel channel, String searchKey)
           
InvalidSearchSyntaxException(Bot bot, Channel channel, String search, DatabaseException cause)
           
GetLogMessagesErrorException(Bot bot, Channel channel, Calendar day)
           
GetLogMessagesErrorException(Bot bot, Channel channel, Calendar day, DatabaseException cause)
           
AddLogErrorException(Bot bot, Channel channel, ServerMessage serverMessage)
           
AddLogErrorException(Bot bot, Channel channel, ServerMessage serverMessage, DatabaseException cause)
           
 

Uses of Channel in com.uwyn.drone.modules.seenmanagement
 

Methods in com.uwyn.drone.modules.seenmanagement with parameters of type Channel
 void SeenManager.recordSeen(Bot bot, Channel channel, SeenData seenData)
           
 SeenData SeenManager.getSeen(Bot bot, Channel channel, String nickname)
           
protected  void DatabaseSeen._recordSeen(Insert addSeen, Update updateSeen, Bot bot, Channel channel, SeenData seenData)
           
protected  SeenData DatabaseSeen._getSeen(Select getSeen, Bot bot, Channel channel, String nickname)
           
 

Uses of Channel in com.uwyn.drone.modules.seenmanagement.databasedrivers
 

Methods in com.uwyn.drone.modules.seenmanagement.databasedrivers with parameters of type Channel
 void org_postgresql_Driver.recordSeen(Bot bot, Channel channel, SeenData seenData)
           
 SeenData org_postgresql_Driver.getSeen(Bot bot, Channel channel, String nickname)
           
 void com_mysql_jdbc_Driver.recordSeen(Bot bot, Channel channel, SeenData seenData)
           
 SeenData com_mysql_jdbc_Driver.getSeen(Bot bot, Channel channel, String nickname)
           
 

Uses of Channel in com.uwyn.drone.modules.seenmanagement.exceptions
 

Methods in com.uwyn.drone.modules.seenmanagement.exceptions that return Channel
 Channel RecordSeenErrorException.getChannel()
           
 Channel GetSeenErrorException.getChannel()
           
 

Constructors in com.uwyn.drone.modules.seenmanagement.exceptions with parameters of type Channel
RecordSeenErrorException(Bot bot, Channel channel, SeenData seenData)
           
RecordSeenErrorException(Bot bot, Channel channel, SeenData seenData, DatabaseException cause)
           
GetSeenErrorException(Bot bot, Channel channel, String nickname)
           
GetSeenErrorException(Bot bot, Channel channel, String nickname, DatabaseException cause)
           
 

Uses of Channel in com.uwyn.drone.tools
 

Methods in com.uwyn.drone.tools with parameters of type Channel
 void SearchTool.indexServerMessage(Date moment, Bot bot, Channel channel, ServerMessage message)
           
 

Uses of Channel in com.uwyn.drone.webui.elements.pub
 

Methods in com.uwyn.drone.webui.elements.pub with parameters of type Channel
protected  void DownloadChannelLog.processChannelLog(ArrayList errors, Bot bot, Channel channel, Calendar day)
           
protected  void ChannelLog.processChannelLog(ArrayList errors, Bot bot, Channel channel, Calendar day)
           
 



Copyright © 2002-2005 Uwyn bvba/sprl. All Rights Reserved.