anon235370
anon235370

Reputation:

Swing removed from JDK?

"JSR-296 (Swing Application Framework) is no longer developed and will not become part of the offical Java Development Kit as was originally planned. You can still use the Swing Application Framework library as it is, but no further development is expected."

So... What to do? New API replacing it?

Upvotes: 5

Views: 2861

Answers (2)

Illya Yalovyy
Illya Yalovyy

Reputation: 11

You can try BSAF (http://kenai.com/projects/bsaf/pages/Home) as a replacement of Swing Application Framework. The stable version is released. Now we are working on API improvements for version 2.0. And we really need more contributors. Is anybody interested?

Upvotes: 1

Pete Kirkham
Pete Kirkham

Reputation: 49311

The swing application framework was a project to create an application framework on top of the swing GUI widget library. IIRC It had some of the same functionality that http://swinglabs.org/ has. It was intended that future versions of Java would ship with it.

It is not the same thing as the swing GUI widget library which already ships with Java.

More details on the difference between an application framework and the GUI widget library can been found in this interview with the lead for the JSR.

Upvotes: 12

Related Questions