-
public final class PageEvent.WindowOpenEvent extends PageEvent
Fired when a new window is going to be opened, via window.open(), link click, form submission, etc.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringurlprivate final StringwindowNameprivate final List<String>windowFeaturesprivate final BooleanuserGesture
-
Method Summary
Modifier and Type Method Description final Stringcomponent1()final Stringcomponent2()final List<String>component3()final Booleancomponent4()final PageEvent.WindowOpenEventcopy(String url, String windowName, List<String> windowFeatures, Boolean userGesture)final StringgetUrl()The URL for the new window. final StringgetWindowName()Window name. final List<String>getWindowFeatures()An array of enabled window features. final BooleangetUserGesture()Whether or not it was triggered by user gesture. -
-
Method Detail
-
component1
final String component1()
-
component2
final String component2()
-
component3
final List<String> component3()
-
component4
final Boolean component4()
-
copy
final PageEvent.WindowOpenEvent copy(String url, String windowName, List<String> windowFeatures, Boolean userGesture)
-
getWindowName
final String getWindowName()
Window name.
-
getWindowFeatures
final List<String> getWindowFeatures()
An array of enabled window features.
-
getUserGesture
final Boolean getUserGesture()
Whether or not it was triggered by user gesture.
-
-
-
-