com.jniwrapper.win32.ie.event
Interface IEApplicationEventListener

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

public interface IEApplicationEventListener
extends java.util.EventListener

The listener interface for receiving Internet Explorer events.


Method Summary
 void onMenuBar(boolean menuBar)
          Fires when the MenuBar property is changed.
 void onQuit()
          Fires before the Internet Explorer application quits
 void onStatusBar(boolean statusBar)
          Fires when the StatusBar property is changed.
 void onToolBar(boolean toolBar)
          Fires when the ToolBar property is changed.
 void onVisible(boolean visible)
          Fires when the Visible property of the object is changed.
 

Method Detail

onQuit

void onQuit()
Fires before the Internet Explorer application quits


onVisible

void onVisible(boolean visible)
Fires when the Visible property of the object is changed. The Visible property indicates whether the object is visible or hidden.

Parameters:
visible - Visible property value

onToolBar

void onToolBar(boolean toolBar)
Fires when the ToolBar property is changed. ToolBar property indicates whether the toolbar for the object is visible

Parameters:
toolBar - ToolBar property value

onMenuBar

void onMenuBar(boolean menuBar)
Fires when the MenuBar property is changed. MenuBar property indicates whether the Microsoft Internet Explorer menu bar is visible

Parameters:
menuBar - MenuBar property value

onStatusBar

void onStatusBar(boolean statusBar)
Fires when the StatusBar property is changed. The StatusBar property indicates whether the status bar for the object is visible.

Parameters:
statusBar - StatusBar property value