Interface BrowserListener
- All Known Implementing Classes:
- BrowserListener.Adapter
public interface BrowserListener
Interface for listener on browser change events.
The class that is interested in processing a browser event either implements this interface (and all the methods it contains) or extends the abstract
The class that is interested in processing a browser event either implements this interface (and all the methods it contains) or extends the abstract
BrowserListener.Adapter class (overriding only the methods of interest).- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic classAn abstract adapter class for receiving browser events.
- 
Method SummaryModifier and TypeMethodDescriptionvoidonDocumentComplete(String url) Inform the listener that the specified url is completely loaded.voidonLocationChange(@NotNull String url) Called when the location (url) of the browser changed.
- 
Method Details- 
onLocationChangeCalled when the location (url) of the browser changed.- Parameters:
- url- the new url
- Since:
- 4.2.416
 
- 
onDocumentCompleteInform the listener that the specified url is completely loaded.- Parameters:
- url- the url which had been loaded
- Since:
- 4.2.416
 
 
-