Package org.eclipse.swt.browser
Interface ProgressListener
- All Known Implementing Classes:
- ProgressAdapter
public interface ProgressListener
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.- 
Method SummaryModifier and TypeMethodDescriptionvoidchanged(ProgressEvent event) This method is called when a progress is made during the loading of the current location.voidcompleted(ProgressEvent event) This method is called when the current location has been completely loaded.
- 
Method Details- 
changedThis method is called when a progress is made during the loading of the current location.The following fields in the ProgressEventapply:- (in) current the progress for the location currently being loaded
- (in) total the maximum progress for the location currently being loaded
- (in) widget the Browserwhose current URL is being loaded
 - Parameters:
- event- the- ProgressEventrelated to the loading of the current location of a- Browser
 
- 
completedThis method is called when the current location has been completely loaded.The following fields in the ProgressEventapply:- (in) widget the Browserwhose current URL has been loaded
 - Parameters:
- event- the- ProgressEventrelated to the- Browserthat has loaded its current URL.
 
- (in) widget the 
 
-