0
votes
1answer
39 views
Java SwingWorker hanging
I'm debugging some code that was written using a SwingWorker to perform a mix of numerical calculation and GUI update. The SwingWorker hangs with the following stack trace :
Ful …
2
votes
2answers
379 views
Swing: Can’t get JButton to update - repaint() not working
I'm using Swing for the first time to create a simple GUI. It consists of a JFrame upon which I have placed a single JButton which, when clicked, calls some other code which takes …
3
votes
4answers
158 views
Swing application problem
I'm developing Swing application, and everything works fine usually. But I have an GUI issue.
When I run the application, and for example minimize some other window, my applicatio …
1
vote
5answers
73 views
What should qualify as a “long running task” to be executed in a SwingWorker thread ?
I know how to use SwingWorker threads, but I still don't have precise criteria to decide when to use one or not.
I/O seems obvious, but what about methods operating on potentiall …
0
votes
3answers
70 views
Problem in javax.swing.SwingWorker
I have made a swings application but there is one problem in that which is as follow:
I have initiated a SwingWorker thread named "Thread-Main" from the Event Dispatch Thread and …
0
votes
2answers
184 views
JDK-7 SwingWorker deadlocks?
I have a small image processing application which does multiple things at once using SwingWorker. However, if I run the following code (oversimplified excerpt), it just hangs on JD …
1
vote
2answers
764 views
How do I use SwingWorker in java?
Hi all
With regards my question (http://stackoverflow.com/questions/772713/call-repaint-from-another-class-in-java).
I'm new to java, and I've had a look at some tutorials on Swing …
2
votes
3answers
122 views
Swing: Passing a value back to the UI from a scheduled thread
I have a system tray UI in Java that requires a schedule database poll. What is the best method for spawning a new thread and notifying the UI?
I'm new to Swing and it's thread …
0
votes
3answers
177 views
Java Swing BasicUI update error, what can I do ?
My program uses Swing JPanel, JList, JScrollPane ...
It runs fine, but generated the following error message, and yet in the message it didn't say which line of my program caused …
3
votes
5answers
464 views
How to prevent swing GUI locking up during a background task
Hi,
I have a swing application which stores a list of objects. When the users clicks a button, I want to perform two operations on each object in the list, and then once that is c …
6
votes
7answers
624 views
What is the rationale of SwingWorker?
For what I can read, it is used to dispatch a new thread in a swing app to perform some "background" work, but what's the benefit from using this rather than a "normal" thread?
Is …
2
votes
4answers
249 views
Scheduling Swingworker threads
Hi,
I have a 2 processes to perform in my swing application, one to fill a list, and one to do operations on each element on the list. I've just moved the 2 processes into Swingwo …
0
votes
1answer
56 views
Pass data to swingWorker?
Is there a way to pass data e.g an object to the swingWorker before invoking "swingWorker.execute"?
6
votes
5answers
463 views
How should I handle exceptions when using SwingWorker?
I use SwingWorker in Java 6 to avoid running long-running code on the event dispatch thread.
If the call to get() in my done() method returns an exception, what is an appropriate …
0
votes
3answers
189 views
Should I be using SwingWorker, threading or a recursive update for this animation?
Hi all.
As I have said in my previous questions, I'm still new to java.
I'm developing a tile based game in java. The movement is on a grid. I'm at the stage where I'm implementing …
