java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.web.WebEvent<T>
- All Implemented Interfaces:
Serializable
,Cloneable
public final class WebEvent<T> extends Event
WebEvent
instances are passed into EventHandler
s registered
with a WebEngine
by JavaScript running on a Web page. An event holds
a single data item of type T
.- Since:
- JavaFX 2.0
- See Also:
WebEngine
,WebEngine.setOnAlert(javafx.event.EventHandler<javafx.scene.web.WebEvent<java.lang.String>>)
,WebEngine.setOnResized(javafx.event.EventHandler<javafx.scene.web.WebEvent<javafx.geometry.Rectangle2D>>)
,WebEngine.setOnStatusChanged(javafx.event.EventHandler<javafx.scene.web.WebEvent<java.lang.String>>)
,WebEngine.setOnVisibilityChanged(javafx.event.EventHandler<javafx.scene.web.WebEvent<java.lang.Boolean>>)
, Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static EventType<WebEvent>
ALERT
This event occurs when a script calls the JavaScriptalert
function.static EventType<WebEvent>
ANY
Common supertype for all Web event types.static EventType<WebEvent>
RESIZED
This event occurs when a script changes location of the JavaScriptwindow
object.static EventType<WebEvent>
STATUS_CHANGED
This event occurs when a script changes status line text.static EventType<WebEvent>
VISIBILITY_CHANGED
This event occurs when a script changes visibility of the JavaScriptwindow
object.Fields inherited from class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, target
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
-
Method Summary
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
ANY
Common supertype for all Web event types. -
RESIZED
This event occurs when a script changes location of the JavaScriptwindow
object. -
STATUS_CHANGED
This event occurs when a script changes status line text. -
VISIBILITY_CHANGED
This event occurs when a script changes visibility of the JavaScriptwindow
object. -
ALERT
This event occurs when a script calls the JavaScriptalert
function.
-
-
Constructor Details
-
WebEvent
Creates a new event object.- Parameters:
source
- the event sourcetype
- the event typedata
- the data item
-
-
Method Details
-
getData
Returns data item carried by this event.- Returns:
- the data item
-
toString
Returns a string representation of thisWebEvent
object.- Overrides:
toString
in classEventObject
- Returns:
- a string representation of this
WebEvent
object.
-