allensoft.javacvs.client.event
Interface CVSClientListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
CVSClientAdapter

public interface CVSClientListener
extends java.util.EventListener

The listener interface for events that are fired by a CVSClient.


Method Summary
 void enteredBatchMode(CVSClientEvent event)
          Fired when the client starts batch mode processing.
 void exitedBatchMode(CVSClientEvent event)
          Fired when the client exits batch mode processing.
 void finishedRequests(CVSClientEvent event)
          Fired when the client has finished performing some requests or just a single request.
 void openedConnection(CVSClientEvent event)
          Fired when the client has actually opened a connection and is about to perform requests.
 void receivedResponse(CVSClientResponseEvent event)
          Fired when a response is recieved from the server to a request.
 void receivedText(CVSClientTextEvent event)
          Fired when some text is received from the server.
 void sentText(CVSClientTextEvent event)
          Fired when some text is sent to the server.
 void startingRequests(CVSClientEvent event)
          Fired when the client is about to start performing some requests or just a single request.
 void statusUpdate(CVSClientTextEvent event)
          Fired when the client's status changes.
 

Method Detail

sentText

public void sentText(CVSClientTextEvent event)
Fired when some text is sent to the server.

receivedText

public void receivedText(CVSClientTextEvent event)
Fired when some text is received from the server.

statusUpdate

public void statusUpdate(CVSClientTextEvent event)
Fired when the client's status changes. The event's text is the status of the client. For example, "Connection to .....", etc.

receivedResponse

public void receivedResponse(CVSClientResponseEvent event)
Fired when a response is recieved from the server to a request.

startingRequests

public void startingRequests(CVSClientEvent event)
Fired when the client is about to start performing some requests or just a single request.

openedConnection

public void openedConnection(CVSClientEvent event)
Fired when the client has actually opened a connection and is about to perform requests. When this is fired the client has successfully logged in.

finishedRequests

public void finishedRequests(CVSClientEvent event)
Fired when the client has finished performing some requests or just a single request.

enteredBatchMode

public void enteredBatchMode(CVSClientEvent event)
Fired when the client starts batch mode processing.

exitedBatchMode

public void exitedBatchMode(CVSClientEvent event)
Fired when the client exits batch mode processing.