org.eclipse.swt.browser
Interface ProgressListener

All Superinterfaces:
java.util.EventListener, SWTEventListener
All Known Implementing Classes:
ProgressAdapter

public interface ProgressListener
extends SWTEventListener

This listener interface may be implemented in order to receive a ProgressEvent notification when a Browser makes a progress in loading the current URL or when the current URL has been loaded.

Since:
3.0
See Also:
Browser.addProgressListener(ProgressListener), Browser.removeProgressListener(ProgressListener), Browser.getUrl()

Method Summary
 void changed(ProgressEvent event)
          This method is called when a progress is made during the loading of the current location.
 void completed(ProgressEvent event)
          This method is called when the current location has been completely loaded.
 

Method Detail

changed

void changed(ProgressEvent event)
This method is called when a progress is made during the loading of the current location.

The following fields in the ProgressEvent apply:

Parameters:
event - the ProgressEvent related to the loading of the current location of a Browser
Since:
3.0

completed

void completed(ProgressEvent event)
This method is called when the current location has been completely loaded.

The following fields in the ProgressEvent apply:

Parameters:
event - the ProgressEvent related to the Browser that has loaded its current URL.
Since:
3.0