|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.webrenderer.event.WindowAdapter
An abstract adapter class for receiving browser window events. The methods in this class are empty. This class exists as convenience for creating listener objects.
Extend this class to create a WindowEvent listener and
override the methods for the events of interest. (If you implement the
WindowListener interface, you have to define all of the methods
in it. This abstract class defines null methods for them all, so
you only have to define methods for events you care about.)
Create a listener object using the extended class and then register it
with a browser using the browser's addWindowListener method.
When a browser event occurs, the relevant method in the listener object is
invoked and the WindowEvent is passed to it.
| Constructor Summary | |
WindowAdapter()
|
|
| Method Summary | |
void |
onNewWindow(WindowEvent e)
Invoked when a new window is requested. |
void |
onWindowDestroy(WindowEvent e)
Invoked when a window destroyed. |
void |
onWindowResize(WindowEvent e)
Invoked when a window resized. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public WindowAdapter()
| Method Detail |
public void onNewWindow(WindowEvent e)
WindowListener
onNewWindow in interface WindowListenere - Event.IIEBrowserCanvas you must then add a
listener for onWindowResize to size the frame.public void onWindowDestroy(WindowEvent e)
WindowListener
onWindowDestroy in interface WindowListenerpublic void onWindowResize(WindowEvent e)
WindowListener
onWindowResize in interface WindowListener
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||