| 
 | |||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| 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 | generic.addLog(Date moment,
       Bot bot,
       Channel channel,
       ServerMessage serverMessage) | 
|  boolean | generic.searchLog(LogResultProcessor processor,
          Bot bot,
          Channel channel,
          String search) | 
|  boolean | generic.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 | generic.recordSeen(Bot bot,
           Channel channel,
           SeenData seenData) | 
|  SeenData | generic.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) | 
| 
 | |||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||