Looks like no one added any tags here yet for you.
Swing
A Java package, javax.swing, that enhances the existing AWT package, java.awt, providing a complete API for Java applications to create GUI.
JFrame
A class in Swing that allows the creation of frames with sizes and locations, termination of the program when the frame is closed, and displaying graphics and Chinese characters.
JPanel
A Swing container used to group components for display.
JButton
A Swing class for creating labeled buttons with platform-independent implementation.
JLabel
A Swing class for displaying short strings, image icons, or read-only text.
JTextField
A Swing component for editing a single line of text.
JTextArea
A Swing class for editing multiple lines of text.
JCheckBox
A Swing component for creating checkboxes that can be checked or unchecked.
JRadioButton
A Swing component for creating radio buttons that can be selected or deselected.
JComboBox
A Swing component for creating a drop-down list for user selection.
JTable
A Swing component for displaying data in a tabular format.
JList
A Swing component for displaying a list of items for user selection.
javax.swing.border
Provides classes and interfaces for drawing specialized borders around Swing components.
javax.swing.colorchooser
Contains classes and interfaces used by the JColorChooser component.
javax.swing.event
Provides support for events fired by Swing components.
javax.swing.filechooser
Contains classes and interfaces used by the JFileChooser component.
javax.swing.plaf
Provides interfaces and abstract classes for Swing's pluggable look and feel capabilities.
javax.swing.plaf.basic
Provides user interface objects built according to the Basic look and feel.
javax.swing.plaf.metal
Provides user interface objects built according to the Java look and feel (Metal).
javax.swing.plaf.multi
Provides user interface objects that combine two or more look and feels.
javax.swing.plaf.synth
Provides user interface objects for a skinnable look and feel with delegated painting.
javax.swing.table
Provides classes and interfaces for dealing with JTable.
javax.swing.text
Provides classes and interfaces for editable and non-editable text components.
javax.swing.text.html
Provides classes for creating HTML text editors.
javax.swing.text.html.parser
Provides the default HTML parser and support classes.
javax.swing.text.rtf
Provides a class (RTFEditorKit) for creating Rich Text Format text editors.
javax.swing.tree
Provides classes and interfaces for dealing with JTree.