Top "Awt" questions

The Abstract Window Toolkit (AWT) is Java's original platform-independent windowing, graphics, and user-interface widget toolkit.

JavaFX app in System Tray

I am Making a Simple App using JavaFX UI, The app simply just do that: has a systray icon, which …

awt javafx systray
One action listener, two JButtons

I have two JButtons called "Left" and "Right". The "Left" button moves a rectangle object to the left and the "…

java swing awt jbutton actionlistener
Alt+Tab using Java Robot

I am trying to bring up the alt+tab menu with a Java Robot. When I call the alt_tab() …

java tabs awt awtrobot alt
Use of the java.awt.Dimension class

I would like to use Dimension class (java.awt.Dimension), but it supports only integers. I want make Rectangle and …

java awt rectangles dimension
java.lang.Error: "Not enough storage is available to process this command" when generating images

I am running a web application on BEA Weblogic 9.2. Until recently, we were using JDK 1.5.0_04, with JAI 1.1.2_01 and Image IO 1.1. …

java memory awt jrockit chartfx
Is Java Swing still in use?

I am planning on making a Java Swing application and was wondering if Swing is still used or if it …

java user-interface swing awt
Using addMouseListener() and paintComponent() for JPanel

This is a follow-up to my previous question. I've simplified things as much as I could, and it still doesn't …

java swing awt jpanel actionlistener
Is there an equivalent in Java for fieldset (HTML)?

Is there an element in Java (i.e. Swing/AWT or SWT) that is equivalent to the HTML element fieldset?

java swing swt awt
Java Swing - JPanel vs JComponent

I'm playing around with Java Swing and i'm really confused when comes to JPanel vs JComponent. According to CoreJava Vol 1 (…

java swing jpanel awt jcomponent
What is use of super.paint(g)?

Can someone explain me what is the use of super.paint(g) where, g is a Graphics variable in Applets …

java applet awt paint super