The Swing Application Framework (JSR 296) is a Java specification for providing a simple application framework for Swing applications. It defines infrastructure common to most desktop applications, making Swing applications easier to create.

learn more… | top users | synonyms

0
votes
0answers
85 views

Refactoring/ Redesigning an application which uses Swing Application Framework creates NullPointerException

I'm currently in a project which is a spring application made with SAF back when it was still compatible with Netbeans. (7.0.1) I'm tasked with cleaning up the application. The project needs some ...
0
votes
1answer
217 views

Logging with java.util.logging in a multi thread application

I have a swing application based on SAF (Swing Application Framework). All logging is done via java.util.logging and two different handlers: console and file. When I create Action to be executed by ...
12
votes
4answers
18k views

Why can't I find Java desktop application in Netbeans 7.1

I downloaded Netbeans 7.1 with all bundle from http://netbeans.org/downloads and installed it successfully on Windows 7. But I can't find Java Desktop Application which should be under Java category ...
1
vote
2answers
651 views

Swing Application Framework session store

I have been using the Swing Application Framework, and very pleased with its sessions state storage. I was wondering if it's possible to delete (clean up) the persisted states. of All dialog forms. ...
1
vote
2answers
769 views

Swing Application Framework does not save program's session (window postition, size etc.) in Linux

I'm developing a tiny app in Java using Swing and Swing Application Framework (JSR 296). It should work under Windows and Linux. In Windows XP session (window postition, size etc.) is saved, but in ...
4
votes
1answer
256 views

Problem with Component Resource Injection using Swing Application Framework

I'm having a problem using the Swing Application Framework's Component Resource Injection, I read the tutorial provided by Sun and it kinda works. The case is that I have a class Program that extends ...
2
votes
2answers
5k views

How to convert a Swing Application to an Applet?

I created a desktop application with Swing Application Framework, now how can I convert it to an applet? The main class extends SingleFrameApplication. EDITED: This is the starting class, used ...
5
votes
5answers
2k views

Is there a better Java application framework than Swing?

I'm planning to work on some hobby Java projects. I've done some small-scale projects, so I'm familiar with the language itself and building a GUI with Swing. I'd like to make my work a little less ...