Uses of Class
javafx.scene.web.WebErrorEvent
Packages that use WebErrorEvent
Package
Description
This package provides means for loading and displaying Web content.
-
Uses of WebErrorEvent in javafx.scene.web
Fields in javafx.scene.web with type parameters of type WebErrorEventModifier and TypeFieldDescriptionstatic EventType<WebErrorEvent>WebErrorEvent.ANYCommon supertype for allWebErrorEventtypes.static EventType<WebErrorEvent>WebErrorEvent.USER_DATA_DIRECTORY_ALREADY_IN_USEThis event occurs when aWebEnginedetects that its user data directory is already in use by aWebEnginerunning in a different VM.static EventType<WebErrorEvent>WebErrorEvent.USER_DATA_DIRECTORY_IO_ERRORThis event occurs when aWebEngineencounters an I/O error while trying to create or access the user data directory.static EventType<WebErrorEvent>WebErrorEvent.USER_DATA_DIRECTORY_SECURITY_ERRORThis event occurs when aWebEngineencounters a security error while trying to create or access the user data directory.Methods in javafx.scene.web that return types with arguments of type WebErrorEventModifier and TypeMethodDescriptionWebEngine.getOnError()Gets the value of the property onError.WebEngine.onErrorProperty()The event handler called when an error occurs.Method parameters in javafx.scene.web with type arguments of type WebErrorEventModifier and TypeMethodDescriptionvoidWebEngine.setOnError(EventHandler<WebErrorEvent> handler)Sets the value of the property onError.Constructor parameters in javafx.scene.web with type arguments of type WebErrorEventModifierConstructorDescriptionWebErrorEvent(Object source, EventType<WebErrorEvent> type, String message, Throwable exception)Creates a newWebErrorEvent.