- SWING - Containers
- SWING - Menu
- SWING - Layouts
- SWING - Event Adapters
- SWING - Event Listeners
- SWING - Event Classes
- SWING - Event Handling
- SWING - Controls
- SWING - Environment
- SWING - Overview
- SWING - Home
SWING Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
SWING - Containers
Containers are an integral part of SWING GUI components. A container provides a space where a component can be located. A Container in AWT is a component itself and it provides the capabipty to add a component to itself. Following are certain noticable points to be considered.
Sub classes of Container are called as Container. For example, JPanel, JFrame and JWindow.
Container can add only a Component to itself.
A default layout is present in each container which can be overridden using setLayout method.
SWING Containers
Following is the pst of commonly used containers while designed GUI using SWING.
Sr.No. | Container & Description |
---|---|
1 | JPanel is the simplest container. It provides space in which any other component can be placed, including other panels. |
2 | A JFrame is a top-level window with a title and a border. |
3 | A JWindow object is a top-level window with no borders and no menubar. |