| Author |
parent window notification
|
Duane Riech
Ranch Hand
Joined: Feb 27, 2003
Posts: 52
|
|
I have a child window which modifies a record displayed by the parent window ( in a JTable). I would like to post an event to notify the parent when the child window is closed so the parent could update the JTable data. Is there an event that the child can post to notify the parent when the child window closes?? Thanks in advance
|
 |
Layne Lund
Ranch Hand
Joined: Dec 06, 2001
Posts: 3061
|
|
|
Yes, the parent window can implement WindowListener and the correct method that is triggered when a window closes. Then when the parent creates the child, it should register itself as a WindowListener to said child.
|
Java API Documentation
The Java Tutorial
|
 |
 |
|
|
subject: parent window notification
|
|
|