wt.clients.content
Class UploadDownloadAdapter

java.lang.Object
  extended bywt.clients.content.UploadDownloadAdapter
All Implemented Interfaces:
EventListener, UploadDownloadListener

public class UploadDownloadAdapter
extends Object
implements UploadDownloadListener

The adapter which receives upload and download events. The methods in this class are empty; this class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest. For instance, a listener only interested in upload events could extend this class and implement only the uploadComplete method.

Supported API: false

Extendable: false

See Also:
UploadDownloadListener

Constructor Summary
UploadDownloadAdapter()
           
 
Method Summary
 void downloadComplete(UploadDownloadEvent evt)
          Method to be invoked on UploadDownloadListeners when a download event occurs.
 void uploadComplete(UploadDownloadEvent evt)
          Method to be invoked on UploadDownloadListeners when an upload event occurs.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UploadDownloadAdapter

public UploadDownloadAdapter()
Method Detail

uploadComplete

public void uploadComplete(UploadDownloadEvent evt)
Method to be invoked on UploadDownloadListeners when an upload event occurs. This method is empty.

Specified by:
uploadComplete in interface UploadDownloadListener
Parameters:
evt - the UploadDownloadEvent associated with the upload that occurred.

downloadComplete

public void downloadComplete(UploadDownloadEvent evt)
Method to be invoked on UploadDownloadListeners when a download event occurs. This method is empty.

Specified by:
downloadComplete in interface UploadDownloadListener
Parameters:
evt - the UploadDownloadEvent associated with the download that occurred.