Package org.htmlunit
Interface WebWindowListener
-
- All Known Implementing Classes:
WebWindowAdapter
public interface WebWindowListenerA listener for WebWindowEvent's.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwebWindowClosed(WebWindowEvent event)A web window has been closed.voidwebWindowContentChanged(WebWindowEvent event)The contents of a web window has been changed.voidwebWindowOpened(WebWindowEvent event)A web window has been opened.
-
-
-
Method Detail
-
webWindowOpened
void webWindowOpened(WebWindowEvent event)
A web window has been opened.- Parameters:
event- the event (the oldPage and newPage properties will benullbecause the event is generated when the window is opened before the content is loaded)
-
webWindowContentChanged
void webWindowContentChanged(WebWindowEvent event)
The contents of a web window has been changed.- Parameters:
event- the event
-
webWindowClosed
void webWindowClosed(WebWindowEvent event)
A web window has been closed.- Parameters:
event- the event
-
-