Class MaximizeFrame

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants

public class MaximizeFrame
extends JInternalFrame
Internal frame that hides the title bar when maximized. Intented to be used together with MaximizeManager. This extends JInternalFrame in a single point: Its layout is wrapped with a MaximizeLayout. Instead of extending this class, a client can alternatively extend JInternalFrame (or a subclass of it) and set its layout manually, e. g., by using the following code:
 setRootPaneCheckingEnabled(false);
 setLayout(new MaximizeLayout(getLayout()));
 setRootPaneCheckingEnabled(true);
 
Version:
$Revision: 1.5 $ $Date: 2010/12/22 13:05:53 $
Author:
Michael Forster
See Also:
MaximizeManager, MaximizeLayout, Serialized Form