org.relayirc.chatengine
Interface ChannelSearchListener

All Known Implementing Classes:
ChannelSearchPanel

public interface ChannelSearchListener

Inteface for listening to progress of a channel search. Implement this interface to be notified of beginning of search, each channel that is found to meet the search criteria and the end of the search.

Author:
David M. Johnson

The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/

Original Code: Relay IRC Chat Engine
Initial Developer: David M. Johnson
Contributor(s): No contributors to this file
Copyright (C) 1997-2000 by David M. Johnson
All Rights Reserved.

Method Summary
 void searchEnded()
          Called when seach ends.
 void searchFound(Channel chan)
          Called when channel is found that meets search criteria.
 void searchStarted(int channels)
          Called when seach begins.
 

Method Detail

searchFound

public void searchFound(Channel chan)
Called when channel is found that meets search criteria.

searchStarted

public void searchStarted(int channels)
Called when seach begins.

searchEnded

public void searchEnded()
Called when seach ends.