Generated by
JDiff

Class javax.swing.JFrame

Documentation changed from old to new.

Added Constructors
JFrame(GraphicsConfiguration) Creates a Frame in the specified GraphicsConfiguration of a screen device and a blank title.
JFrame(String, GraphicsConfiguration) Creates a JFrame with the specified title and the specified GraphicsConfiguration of a screen device.
 

Changed Constructors
JFrame(String) Documentation changed from old to new.
Creates a new initially invisible Frame with the specified title.
JFrame(void) Documentation changed from old to new.
Constructs a new frame that is initially invisible.
 

Changed Methods
void addImpl(Component, Object, int) Documentation changed from old to new.
By default children may not be added directly to this component they must be added to its contentPane instead.
JRootPane createRootPane() Documentation changed from old to new.
Called by the constructor methods to create the default rootPane.
void frameInit() Documentation changed from old to new.
Called by the constructors to init the JFrame properly.
AccessibleContext getAccessibleContext() Documentation changed from old to new.
Gets the AccessibleContext associated with this JFrame.
Container getContentPane() Documentation changed from old to new.
Returns the contentPane object for this frame.
int getDefaultCloseOperation() Documentation changed from old to new.
Returns the operation that occurs when the user initiates a "close" on this frame.
Component getGlassPane() Documentation changed from old to new.
Returns the glassPane object for this frame.
JMenuBar getJMenuBar() Documentation changed from old to new.
Returns the menubar set on this frame.
JLayeredPane getLayeredPane() Documentation changed from old to new.
Returns the layeredPane object for this frame.
JRootPane getRootPane() Documentation changed from old to new.
Returns the rootPane object for this frame.
boolean isRootPaneCheckingEnabled() Documentation changed from old to new.
Returns whether calls to add and setLayout cause an exception to be thrown.
String paramString() Documentation changed from old to new.
Returns a string representation of this JFrame.
void setContentPane(Container) Documentation changed from old to new.
Sets the contentPane property.
void setDefaultCloseOperation(int) Documentation changed from old to new.
Sets the operation that will happen by default when the user initiates a "close" on this frame.
void setGlassPane(Component) Documentation changed from old to new.
Sets the glassPane property.
void setLayeredPane(JLayeredPane) Documentation changed from old to new.
Sets the layeredPane property.
void setLayout(LayoutManager) Documentation changed from old to new.
By default the layout of this component may not be set the layout of its contentPane should be set instead.
void setRootPane(JRootPane) Documentation changed from old to new.
Sets the rootPane property.
void setRootPaneCheckingEnabled(boolean) Documentation changed from old to new.
Determines whether calls to add and setLayout will cause an exception to be thrown.
void update(Graphics) Documentation changed from old to new.
Just calls paint(g).
 

Added Fields
int EXIT_ON_CLOSE The exit application default window close operation.
 

Changed Fields
AccessibleContext accessibleContext Documentation changed from old to new.
The accessible context property.
JRootPane rootPane Documentation changed from old to new.
The JRootPane instance that manages the contentPane and optional menuBar for this frame as well as the glassPane.
boolean rootPaneCheckingEnabled Documentation changed from old to new.
If true then calls to add and setLayout will cause an exception to be thrown.