com.objexcel.irc
Interface DCCEventListener


public abstract interface DCCEventListener
extends java.util.EventListener

DCCEventListener allows listener to intercept dcc events


Method Summary
 void onDCCEvent(DCCEvent event)
           
 void onDCCFileProgress(DCCEvent event, int bytes)
          file progress report (sent by Objirc Chat).
 void onDCCInfo(DCCEvent event, java.lang.String info)
          some dcc info was sent (by Objirc Chat)
 void onDCCMsg(DCCEvent event, java.lang.String msg)
          a dcc message was sent
 void onDCCStarted(DCCEvent event)
          a dcc connection was started
 void onDCCTerminated(DCCEvent event)
          a dcc session terminated
 

Method Detail

onDCCEvent

public void onDCCEvent(DCCEvent event)
                throws java.lang.Exception

onDCCStarted

public void onDCCStarted(DCCEvent event)
                  throws java.lang.Exception
a dcc connection was started

onDCCTerminated

public void onDCCTerminated(DCCEvent event)
                     throws java.lang.Exception
a dcc session terminated

onDCCMsg

public void onDCCMsg(DCCEvent event,
                     java.lang.String msg)
              throws java.lang.Exception
a dcc message was sent

onDCCInfo

public void onDCCInfo(DCCEvent event,
                      java.lang.String info)
               throws java.lang.Exception
some dcc info was sent (by Objirc Chat)

onDCCFileProgress

public void onDCCFileProgress(DCCEvent event,
                              int bytes)
                       throws java.lang.Exception
file progress report (sent by Objirc Chat).