SSSai Sahith Polimerainsahith.hashnode.dev·Feb 12, 2024 · 1 min readCreating Your First Java Swing Application: Building a Simple JFrameJFrame: JFrame is an essential component in java swing. It is a part of SWT(Standard widget toolkit). JFrame allows the users to create a top level window which serves as the main window for GUI based java applications and provides a way to access...00
SSSai Sahith Polimerainsahith.hashnode.dev·Feb 12, 2024 · 1 min readComparing Swing and AWT: Unraveling the Distinctions in Java GUI FrameworksAWTSwingIt is API to develop GUI applications in JavaSwing is a part to foundation classes to create GUI in javaIn AWT components are heavy weightIn swing components are lightweightExecution time is more in AWT than SwingExecution time in swing is le...00
SSSai Sahith Polimerainsahith.hashnode.dev·Feb 12, 2024 · 2 min readWhat is JApplet in Swing?JApplet: JApplet is a class in javax.swing that represents swing applet. An applet is a small program which runs in the web browser. To create a Swing applet developers often extend the JApplet class. Life Cycle methods: There are 4 me...00