com.jniwrapper.win32.ie.event
Class HtmlDialogEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.jniwrapper.win32.ie.event.HtmlDialogEvent
All Implemented Interfaces:
java.io.Serializable

public class HtmlDialogEvent
extends java.util.EventObject

Represents an event which indicates that the HTML Dialog is opened and its document is loaded completely and available.

This event is generated when the modal or modeless HTML dialog is shown through window.showModalDialog or window.showModelessDialog JavaScript function.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
HtmlDialogEvent(java.lang.Object source, HTMLDialog dialog)
          Constructs a new instance of event..
 
Method Summary
 HTMLDialog getDialog()
          Returns an instance of the opened HTML dialog.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HtmlDialogEvent

public HtmlDialogEvent(java.lang.Object source,
                       HTMLDialog dialog)
Constructs a new instance of event..

Parameters:
source - The object on which the Event initially occurred.
dialog - The instance of the opened HTML dialog.
Method Detail

getDialog

public HTMLDialog getDialog()
Returns an instance of the opened HTML dialog.

Returns:
an instance of the opened HTML dialog.