
How to Make Frames (Main Windows) (The Java™ Tutorials > …
A Frame is a top-level window with a title and a border. The size of the frame includes any area designated for the border. The dimensions of the border area may be obtained using the getInsets method.
Frame (Java Platform SE 8 ) - Oracle
A Frame is a top-level window with a title and a border. The size of the frame includes any area designated for the border.
JFrame (Java Platform SE 8 ) - Oracle
An extended version of java.awt.Frame that adds support for the JFC/Swing component architecture. You can find task-oriented documentation about using JFrame in The Java Tutorial, in the section How to Make Frames. The JFrame class is slightly incompatible with Frame.
JDK 22 Documentation - Home - Oracle
The documentation for JDK 22 includes developer guides, API documentation, and release notes.
JFrame (Java SE 11 & JDK 11 ) - Oracle
You can find task-oriented documentation about using JFrame in The Java Tutorial, in the section How to Make Frames. The JFrame class is slightly incompatible with Frame . Like all other JFC/Swing top-level containers, a JFrame contains a JRootPane as its only child.
StackFrame (Java Debug Interface ) - Oracle
As a thread executes, stack frames are pushed and popped from its call stack as methods are invoked and then return. A StackFrame mirrors one such frame from a target VM at some point in its thread's execution.
Uses of Class java.awt.Frame (Java Platform SE 8 ) - Oracle
Returns the Frame to use for the class methods in which a frame is not provided.
Frame (Java SE 11 & JDK 11 ) - Oracle
A Frame is a top-level window with a title and a border. The size of the frame includes any area designated for the border.
How to Use Modality in Dialogs (The Java™ Tutorials - Oracle
Java™ SE 6 has resolved modality issues that arose in earlier versions of the platform. The new modality model enables the developer to scope, or limit, a dialog box's modality blocking. Before proceeding with the new modality model, review the following terms:
Using Top-Level Containers (The Java™ Tutorials - Oracle
Here's a picture of a frame created by an application. The frame contains a green menu bar (with no menus) and, in the frame's content pane, a large blank, yellow label. You can find the entire source for this example in TopLevelDemo.java .