Java Swing

0.0(0)
studied byStudied by 2 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/25

flashcard set

Earn XP

Description and Tags

Last updated 4:31 AM on 3/4/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

26 Terms

1
New cards

Swing

A Java package (javax.swing) that enhances the AWT package, providing a complete API for creating GUI in Java applications.

2
New cards

Java Swing

It provides "lightweight" components that work the same on all platform

3
New cards

javax.swing.border

Provides classes and interfaces for drawing specialized borders around Swing components.

4
New cards

javax.swing.colorchooser

Contains classes and interfaces for the JColorChooser component.

5
New cards

javax.swing.event

Supports events fired by Swing components.

6
New cards

javax.swing.filechooser

Contains classes and interfaces for the JFileChooser component.

7
New cards

javax.swing.plaf

Provides interface and abstract classes for pluggable look and feel capabilities in Swing.

8
New cards

javax.swing.table

Offers classes and interfaces for dealing with JTable.

9
New cards

javax.swing.text

Provides classes and interfaces for handling editable and non-editable text components.

10
New cards

javax.swing.tree

Contains classes and interfaces for working with JTree.

11
New cards

javax.swing.undo

Allows developers to implement undo/redo support in applications like text editors.

12
New cards

java.awt.GraphicsEnvironment

It provides a lot of information about your local graphics device, which is your computer screen.

13
New cards

getLocalGraphicsEnvironment()

method to get information about your local system.

14
New cards

java.awt.Toolkit

class provides information about the default graphics environment, like the local screen.

15
New cards

getDefaultToolkit()

method to get information of the default graphics device, the local screen.

16
New cards

JFrame

A class in Swing for creating frames with sizes, locations, displaying content, and drawing graphics.

17
New cards

JPanel

A container in Swing for grouping components logically.

18
New cards

JButton

A Swing class for creating labeled buttons with platform-independent implementation.

19
New cards

JLabel

Used in Swing to display text, images, or both.

20
New cards

JTextField

A Swing component for editing a single line of text.

21
New cards

JTextArea

A Swing component for editing multiple lines of text.

22
New cards

JCheckBox

A Swing component for creating checkboxes.

23
New cards

JRadioButton

A Swing component for creating radio buttons.

24
New cards

JComboBox

A Swing component for creating drop-down lists.

25
New cards

JTable

A Swing component for displaying data in a tabular format.

26
New cards

JList

A Swing component for displaying a list of items for user selection.