- 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 WebEventinstances are passed intoEventHandlers registered with aWebEngineby JavaScript running on a Web page. An event holds a single data item of typeT.- 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 SummaryFields Modifier and Type Field Description static EventType<WebEvent>ALERTThis event occurs when a script calls the JavaScriptalertfunction.static EventType<WebEvent>ANYCommon supertype for all Web event types.static EventType<WebEvent>RESIZEDThis event occurs when a script changes location of the JavaScriptwindowobject.static EventType<WebEvent>STATUS_CHANGEDThis event occurs when a script changes status line text.static EventType<WebEvent>VISIBILITY_CHANGEDThis event occurs when a script changes visibility of the JavaScriptwindowobject.- 
Fields inherited from class javafx.event.Eventconsumed, eventType, NULL_SOURCE_TARGET, target
 - 
Fields inherited from class java.util.EventObjectsource
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetData()Returns data item carried by this event.StringtoString()Returns a string representation of thisWebEventobject.- 
Methods inherited from class javafx.event.Eventclone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
 - 
Methods inherited from class java.util.EventObjectgetSource
 
- 
 
- 
- 
- 
Field Detail- 
RESIZEDpublic static final EventType<WebEvent> RESIZED This event occurs when a script changes location of the JavaScriptwindowobject.
 - 
STATUS_CHANGEDpublic static final EventType<WebEvent> STATUS_CHANGED This event occurs when a script changes status line text.
 - 
VISIBILITY_CHANGEDpublic static final EventType<WebEvent> VISIBILITY_CHANGED This event occurs when a script changes visibility of the JavaScriptwindowobject.
 
- 
 - 
Method Detail- 
getDatapublic T getData() Returns data item carried by this event.- Returns:
- the data item
 
 - 
toStringpublic String toString() Returns a string representation of thisWebEventobject.- Overrides:
- toStringin class- EventObject
- Returns:
- a string representation of this WebEventobject.
 
 
- 
 
-