java swing

Swing is a GUI widget toolkit for Java. It is part of Oracle's Java Foundation Classes (JFC) – an API for providing a graphical user interface (GUI) for Java programs.
Swing was developed to provide a more sophisticated set of GUI components than the earlier Abstract Window Toolkit (AWT). Swing provides a look and feel that emulates the look and feel of several platforms, and also supports a pluggable look and feel that allows applications to have a look and feel unrelated to the underlying platform. It has more powerful and flexible components than AWT. In addition to familiar components such as buttons, check boxes and labels, Swing provides several advanced components such as tabbed panel, scroll panes, trees, tables, and lists.Unlike AWT components, Swing components are not implemented by platform-specific code. Instead, they are written entirely in Java and therefore are platform-independent.
In December 2008, Sun Microsystems (Oracle's predecessor) released the CSS / FXML based framework that it intended to be the successor to Swing, called JavaFX.

You do not have permission to view the full content of this post. Log in or register now.
  1. I

    Help List of Fonts in Java Swing

    Hello, pogi na bot. Can you please show me the list of available fonts in Java Swing and the appearance of it beside its name?
  2. M

    Java JAVA exam

    mga lods, pahelp dito. Di ko kse mapashow sa another panel ung character kasama yung selected weapon. GUI po to. import javax.swing.*; import java.awt.*; public class CharacterSelectionGUI extends JFrame { private WeaponSelectionGUI weaponSelectionGUI; private JLabel...
Back
Top