Name: nkR10003 Date: 09/21/2000
JavaDoc comments for BasicInternalFrameUI.replacePane method state:
"Adds necessary mouseHandlers to currentPane and adds it to frame.
Reverse process for the newPane." But behavior of the method is quite
different. Method removes currentPane and adds newPane (same with the
listeners).
See piece of source code below:
//BasicInternalFrameUI
protected void replacePane(JComponent currentPane, JComponent newPane) {
if(currentPane != null) {
deinstallMouseHandlers(currentPane);
frame.remove(currentPane);
}
if(newPane != null) {
frame.add(newPane);
installMouseHandlers(newPane);
}
}
---------------------------------------------
======================================================================