com.jniwrapper.win32.ie.event
Class IEApplicationEventAdapter

java.lang.Object
  extended by com.jniwrapper.win32.ie.event.IEApplicationEventAdapter
All Implemented Interfaces:
IEApplicationEventListener, java.util.EventListener

public abstract class IEApplicationEventAdapter
extends java.lang.Object
implements IEApplicationEventListener

An abstract adapter class for receiving Internet Explorer events.


Constructor Summary
IEApplicationEventAdapter()
           
 
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IEApplicationEventAdapter

public IEApplicationEventAdapter()
Method Detail

onQuit

public void onQuit()
Description copied from interface: IEApplicationEventListener
Fires before the Internet Explorer application quits

Specified by:
onQuit in interface IEApplicationEventListener

onVisible

public void onVisible(boolean visible)
Description copied from interface: IEApplicationEventListener
Fires when the Visible property of the object is changed. The Visible property indicates whether the object is visible or hidden.

Specified by:
onVisible in interface IEApplicationEventListener
Parameters:
visible - Visible property value

onToolBar

public void onToolBar(boolean toolBar)
Description copied from interface: IEApplicationEventListener
Fires when the ToolBar property is changed. ToolBar property indicates whether the toolbar for the object is visible

Specified by:
onToolBar in interface IEApplicationEventListener
Parameters:
toolBar - ToolBar property value

onMenuBar

public void onMenuBar(boolean menuBar)
Description copied from interface: IEApplicationEventListener
Fires when the MenuBar property is changed. MenuBar property indicates whether the Microsoft Internet Explorer menu bar is visible

Specified by:
onMenuBar in interface IEApplicationEventListener
Parameters:
menuBar - MenuBar property value

onStatusBar

public void onStatusBar(boolean statusBar)
Description copied from interface: IEApplicationEventListener
Fires when the StatusBar property is changed. The StatusBar property indicates whether the status bar for the object is visible.

Specified by:
onStatusBar in interface IEApplicationEventListener
Parameters:
statusBar - StatusBar property value