com.teamdev.jxbrowser.events
Interface NavigationListener

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

public interface NavigationListener
extends java.util.EventListener

The listener interface for receiving navigation event notifications from Browser control.

See Also:
Navigation.addNavigationListener(NavigationListener)

Method Summary
 void navigationFinished(NavigationFinishedEvent event)
          Fires when a navigation operation finished (halted, fails) and a document has been completely loaded and initialized.
 void navigationStarted(NavigationEvent event)
          Fires when a navigation operation is beginning.
 

Method Detail

navigationStarted

void navigationStarted(NavigationEvent event)
Fires when a navigation operation is beginning. You will receive this event when a web page starts loading.

Parameters:
event - provides information about event.

navigationFinished

void navigationFinished(NavigationFinishedEvent event)
Fires when a navigation operation finished (halted, fails) and a document has been completely loaded and initialized. In pages with no frames or where multiple frames are loaded, this event fires once after loading is complete.

Parameters:
event - provides information about event.