About update(Observable arg0, Object arg1)
Hi,
I have class that implements Observer.
This MyDialogTable class extends JDialog And display a ScrollPane contain JTable.
Every mouse click in the table row I create another MyDialogTable...
I have button to close this dialog:
setVisible(false);
dispose();
How can I update only the dialog that display now?
I mean, if I have dialog1--> dialog2 --> dialog3
I close dialog3(MyDialogTable number 3) > then I want to update only dialog2 (MyDialogTable number 2).Thanks :)

