Microsoft Store
 

Swing (Java)


 

Swing is a GUI toolkit for Java. Swing is one part of the Java Foundation Classes (JFC). Swing includes graphical user interface (GUI) widgets such as text boxes, buttons, split-panes, and tables.

Related Topics:
GUI toolkit - Java - Java Foundation Classes - Graphical user interface - Widgets

~ ~ ~ ~ ~ ~ ~ ~ ~ ~

SWING gives much fancier screen displays than the raw AWT. Since they are written in pure Java, they run the same on all platforms, unlike the AWT. They are part of the JFC. They support pluggable look and feel ? not by using the native platform's facilities but by roughly emulating them. This means you can get any supported look and feel on any platform. The disadvantage of lightweight components is slower execution. The advantage is uniform behaviour on all platforms.

~ ~ ~ ~ ~ ~ ~ ~ ~ ~