Reputation: 1969
I want to create a desktop application, but do not want to use SWING. I have heard about of SWT as alternative to SWING. Any another solutions exists? And what do you recommend to use?
Upvotes: 0
Views: 929
Reputation: 1192
What about just AWT in java.util.awt
and subpackages? You can use the older equivalents of Swing's components.
Upvotes: 1
Reputation: 51445
You can build an Eclipse Rich Client Platform (RCP), using SWT and JFace.
Upvotes: 1