[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

The JInternalFrame bug is Sun's and they provide a workaround



http://developer.java.sun.com/developer/bugParade/bugs/4333421.html

Overload setLayout() in a subclass to JInternalFrame and use the subclass
                                      instead of JInternalFrame.

                      public void setLayout(LayoutManager manager) {
                          getContentPane().setLayout(manager);
                      }

Other than that, Ozone/serialization seem to handle Swing (treacherous 
ground that this is).

				-- Marek