Dmitriy Tarasov
Dmitriy Tarasov

Reputation: 1969

Desktop application on Java

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

Answers (2)

Calum Murray
Calum Murray

Reputation: 1192

What about just AWT in java.util.awt and subpackages? You can use the older equivalents of Swing's components.

Upvotes: 1

Gilbert Le Blanc
Gilbert Le Blanc

Reputation: 51445

You can build an Eclipse Rich Client Platform (RCP), using SWT and JFace.

Upvotes: 1

Related Questions