Is there a standard way of notifying parent windows of occurrences in child windows? I have a jFrame with a lot of controls in it, including a custom control I've created myself which is a jList with checkboxes for each list item. The jList has listeners for mouse and keyboard so that it can change the checked status of list items when the user mouse clicks or hits space while they are selected.
I want the parent window to know when the checked status of a list item changes, so that it can refresh the contents of another window. But I can't work out how to send the notification of the change up to the parent window.