The swing-application-framewo tag has no wiki summary.
10
votes
5answers
2k views
How to actually use Swing Application Framework?
I'd like to learn how to effectively use Swing Application Framework. Most of the the examples I've found are blog entries that just explain how to great it is to extend SingleFrameApplication and ...
4
votes
2answers
414 views
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 ...
4
votes
1answer
893 views
Using the MVC model with Swing Application Framework
I'm trying to create a simple Java desktop application using the Swing Application Framework and the MVC model but I'm struggling on some areas because there is a lack of good examples (the only SAF ...
2
votes
1answer
71 views
Cannot close frame using button after opening a new one in swing
package bt;
import java.awt.Color;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import ...
2
votes
1answer
118 views
To refresh JTable JAVA
I wanted to refresh JTable immediately when data is inserted or deleted ,i got problem looked at forums but the solutions are too particular to their examples,is there a general way how JTable is ...
2
votes
1answer
120 views
Need help using SingleFrameApplication to save sessions
I have a program that need to save all of the things in JTextFields, JComboBoxes, etc.
I came upon an example that lead me to believe i could achieve this with the SingleFrameApplication class.
...
2
votes
2answers
96 views
Want javax.swing hook that tells me WHICH component in the hierarchy is executing an action
How with minimum code uglification can I write a debugging hook in a Swing program that would tell me which component in the hierarchy is actually handling each KeyStroke or mouse click and performing ...
1
vote
0answers
21 views
Netbeans 7.1 dropped Swing Application Framework support? How can I migrate form 7.0 to 7.1?
Last week, I get very depressed, I have three big apps in production and many more using Swing Application Framework. Later, when I started to migrate to Netbeans 7.1, BOOM!, no more support for SAF. ...
1
vote
2answers
630 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
3answers
72 views
Understanding the Generic type parameters of TaskListener
I'm currently working on refactoring some old code and I found a snippet where I don't understand how to properly use Generics for the Swing Application Framework class TaskListener.Adapter.
This is ...
1
vote
1answer
144 views
Is it possible to connect mysql and sql server to get the tables present in it?
The user should not specify the type whether it is ms sql or my sql?
I want to do it in netbeans?
If not is there any way?
Thank you
1
vote
2answers
362 views
How can I customize the color of the tabbedPane at swing builder?
I want to customize the color of my tabbedPane to fit at the theme of my gui, but I don't know how to do it. I've tried lots of code but still nothing happens.
Here's my gui...
thnx in advance ^_^
1
vote
2answers
957 views
I am trying open a JPanel from another frame. Not able to do so
I am creating a program for database manipulation with proper GUI and all. I am using swing for the same. Anyway, when I run the app, the following window opens:
public class MusicShopManagementView ...
1
vote
1answer
548 views
Resource files with Swing Application Framework
Could someone explain how I should use resource injection when I have several packages in my application? I seem unable to load resources in any other package but the one where I have the ...
0
votes
1answer
117 views
How should manage Database transactions using Entity Manager in a relatively large application?
I have developed a fairly large CRUD application, using a MYSQL Database and Swing Application framework and javax.persistence.
My question is how should I best manage my transactions given the ...
0
votes
2answers
429 views
Make background of TextArea opaque
I want to make my TextArea's background opaque. I'm using swing gui forms at netbeans.
I want to overlap the instructions infront of the image (see this picture), but the problem is texts can't be ...
0
votes
2answers
181 views
Browser History Management system in java
I am develop a Browser GUI(SWing) History
Management System,Like Storing the
Visited Website and Duration spend on
that website etc..
I need to Know what are the packages that support
...
0
votes
1answer
177 views