About 51 results
Open links in new tab
  1. What is the difference between Swing and AWT? - Stack Overflow

    Jan 3, 2009 · AWT is a Java interface to native system GUI code present in your OS. It will not work the same on every system, although it tries. Swing is a more-or-less pure-Java GUI. It uses AWT to …

  2. java - SWT and AWT, what is the difference? - Stack Overflow

    AWT is the original cross-platform, native-peer based GUI widget set. It drew a lot of complaints for not being perfectly consistent across platforms. Sun built the Swing widget set to answer those …

  3. Of Swing and AWT, why is one considered light-weight and the other ...

    Mar 23, 2009 · AWT is said to be "Heavyweight" because basically each AWT component is a native platform component. AWT is implemented on top of the platform's native GUI toolkit. This also …

  4. java - NoClassDefFoundError: Could not initialize class sun.awt ...

    Apr 1, 2019 · NoClassDefFoundError: Could not initialize class sun.awt.X11FontManager Asked 7 years ago Modified 1 year, 4 months ago Viewed 52k times

  5. Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, …

    Sep 9, 2011 · AWT, Swing and SWT are UI toolkits but I would certainly not call them "frameworks". Frameworks are based upon a given UI toolkit and provide the glue to build your application. First, …

  6. java - What is sun.awt.windows.WToolkit? - Stack Overflow

    Feb 3, 2014 · The names speak for themselves: AWT stands for Abstract Window Toolkit which implies that the Toolkit is abstract and requires an actual implementation. sun.awt.windows.WToolkit is such …

  7. Java AWT package "not accessible" in eclipse - Stack Overflow

    Java AWT package "not accessible" in eclipse [duplicate] Asked 6 years, 6 months ago Modified 6 years, 2 months ago Viewed 105k times

  8. "No X11 DISPLAY variable" - what does it mean? - Stack Overflow

    export JAVA_TOOL_OPTIONS='-Djava.awt.headless=true' After that if the problem still persists, removing all packages that may interfere may be a radical solution.

  9. Difference between java.awt.* and java.awt.event.*

    Dec 5, 2010 · When you say import java.awt.* it imports only those classes which belong exactly to java.awt package, not to its subpackages. That's why when you want to use events you have also …

  10. java - Could not initialize class sun.awt.X11GraphicsEnvironment on ...

    The problem is you're using OpenJDK (or some other version of Java like Jikes) and the awt was one of the parts of Java that could not be open sourced for licensing reasons.