Tagged Questions

A line/screen editor, found on vax/vms systems

learn more… | top users | synonyms

23
votes
3answers
599 views

Static Thread Analysis: Good idea?

I help maintain and build on a fairly large Swing GUI, with a lot of complex interaction. Often I find myself fixing bugs that are the result of things getting into odd states due to some race ...
8
votes
1answer
257 views

How to Stop the Swing EDT

The typical Swing application starts the EDT at the beginning and when the last window is closed the Application stops basically with a System.exit either implicit or explicit. But my little ...
8
votes
3answers
318 views

Java: does the EDT restart or not when an exception is thrown?

(the example code below is self-contained and runnable, you can try it, it won't crash your system :) Tom Hawtin commented on the question here: http://stackoverflow.com/questions/3018165 that: ...
6
votes
2answers
483 views

How can i catch Event Dispatch Thread (EDT) exceptions?

I am using a class called MyExceptionHandler that implements Thread.UncaughtExceptionHandler to handle normal exceptions in my project. As i understand this class can't catch the EDT exceptions, so i ...
5
votes
8answers
636 views

Howto manage the game state in face of the EDT?

I'm developing a real time strategy game clone on the Java platform and I have some conceptional questions about where to put and how to manage the game state. The game uses Swing/Java2D as rendering. ...
4
votes
4answers
351 views

Why does my GUI still hang even after using SwingUtilities.invokeLater?

I have this ActionListener that gets called in the EDT. My plot() function is computationally heavy, it can easily take five seconds. It made the GUI hang as expected. I added the ...
4
votes
3answers
231 views

What's the correct way to run a code in the EDT only once?

I have a Swing application that uses a Java Thread to constantly perform some operation. The results of this operation update the contents of a graph in the UI: class ExampleThread { ... ...
4
votes
3answers
308 views

Where is the event dispatch thread called?

I read that all the code which constructs Swing components and handles Events must be run by the Event Dispatch Thread. I understand how this is accomplished by using the SwingUtilities.invokeLater() ...
4
votes
3answers
624 views

Swing verify code on event dispatch thread at runtime

Are there any libraries that instrument code to verify that methods called on swing components are called on the event dispatch thread? It probably wouldn't be too difficult to write some basic code ...
3
votes
3answers
115 views

Manage GUI and EDT in mutli-task application

I developed a Java application for create and extract archive like winrar. You can create several archive in same time with multi-thread. And recently, I wanted add an information status during the ...
3
votes
5answers
295 views

SwingUtilities.invokeLater

Sorry for posting too many questions on Java. I'm a C# developer and decided to abandon it (after 8 years) to use Java instead, so please bear up with me. My question this time is related to ...
3
votes
2answers
405 views

java swing clear the event queue

Is it possible to do this in a standard manner? Here is the scenario. Start doing something expensive in EDT (EDT is blocked till the expensive operation is over). While EDT was blocked, the user ...
3
votes
3answers
148 views

Java Swing EDT & Concurrency

I was just wondering if it is still necessary to ensure synchronicity in an invokeLater() Runnable. I am encountering deadlock and need to overcome it while maintaining concurrency. Would this be an ...
3
votes
5answers
211 views

What does SwingUtilities.invokeLater do?

What does SwingUtilities.invokeLater do? Is it just delaying the execution of a block of codes inside its run method? What is the difference between calling an action within the invokeLater function ...
3
votes
2answers
118 views

Repainting in a multithreaded environment

i am working on an applet with around ten different datasources(e.g. statistics/error-log/...). Each datasource is updated by a single network connection and reports updates via the observer ...
3
votes
3answers
133 views

java - how to view everything running on the event thread

we are experiencing a bug we cannot track down where something is freezing up our swing thread (it's been almost 2 weeks now and no real results) - we are experienced swing programmers but we have a ...
3
votes
2answers
229 views

GUI layer vs Code layer vs Swing

I always coded console applications and learned some basic UML/patterns skills, using C++. Now I decided to move to Java and add GUIs to my programs. The first question is how to handle the GUI ...
3
votes
3answers
546 views

Java - AWT / Swing - handling the Event Dispatcher Thread

I have a question about the 'Event Descriptor Thread'. I have a Main class that is also a JFrame. It initialises the rest of the components in the code, some of them do not involve Swing and some of ...
3
votes
4answers
383 views

Passing variables to the Event Dispatch Thread

my GUI locks up because I need to update it through the EDT, however, I need to also pass a variable that is being updates with the GUI: while ((message = ...
2
votes
4answers
83 views

How do you use the Event Dispatch Thread?

I've been programming stuff in Java for almost a year now, and a few months ago I learned about how swing isn't thread-safe. Delving deeper, I discovered that every modification to a swing component ...
2
votes
1answer
96 views

Enable “not thread-safe” warning for Swing Controls in MATLAB

By default Swing "not thread-safe" warnings are disabled in MATLAB. Does anyone know what is the identifier of this warning so that I could enable it in MATLAB? Yair Altman posted about it years ago ...
2
votes
6answers
127 views

Swing thread safety boilerplate

For the sake of simplicity, imagine an application that downloads a file. There is a simple GUI with one label that displays progress. To avoid EDT violations, like every lawful citizen I download the ...
2
votes
2answers
82 views

Demo from Sun doing GUI stuff outside the EDT?

I am looking at SplashDemo.java from the Java Sun tutorials. The class illustrates how to create splash screens when an application starts up. SplashDemo creates a frame directly in the main method. ...
2
votes
3answers
112 views

How do I profile the EDT in Java Swing?

I have an application that I'm building in Swing. It has a scrollable and zoomable chart component which I can pan and zoom in. The whole thing is smooth except that sometimes the UI will pause for ...
2
votes
4answers
152 views

Is there a way to call JXTable.packAll() in a way that does not lock up the swing thread?

I am displaying lots of data in JXTable from the SwingX project. After loading the data, I call packAll() on the table but with 200 hundred columns and 30,000 records it might take 5 seconds or more. ...
2
votes
7answers
201 views

How to retrieve a value that must be computed on another thread

There are many cases where thread A requires a value that must be computed on thread B. (Most commonly, B == EDT.) Consider this example: String host; SwingUtilities.invokeAndWait(new Runnable() { ...
2
votes
1answer
137 views

JFrame and why stay running

Why if I create a JFrame then the program still runs until (i.e) I close it with the small "exit button" of the window? I looked for this answer and I failed. The only thing I guessed is that when I ...
2
votes
3answers
538 views

Check if thread is EDT is necessary?

I have an UI implemented with Swing. One component does some work that may take some time, so I use SwingUtilities.invokeLater. However, I was reading some old code and found this in an ...
2
votes
4answers
369 views

Event Dispatch Thread meets the Java Memory Model

This is related to an earlier question I asked, where the answer was: If a field is accessed by multiple threads, it should be volatile or final, or accessed only with synchronized blocks. ...
1
vote
1answer
74 views

Frame displayed with InvokeLater after all other processes are done

I'm afraid that this one is a little tricky since I couldn't recreate the issue in the example I wrote for this question (the example below works perfectly). Hopefully someone may have a clue as to ...
1
vote
2answers
128 views

In Swing can you post an event to the top of the EDT events queue?

I am looking for a way to do what the InvokeLater() function does only instead of putting the event on the bottom of the event queue it puts it on top. At least I think that will do what I want, maybe ...
1
vote
1answer
134 views

hiding button, then waiting 2 seconds before showing it again, after clicking the button

i have this school project i'm making, where i need to make my code hide a button, and then sleep, and then continue, but it never hides the button. i have one class which is started by a button ...
1
vote
3answers
224 views

Should swing event handlers be queued after the evnt on the EDT?

Should swing event handling code be queued after the event on the EDT? If so, is it the responsibility of the event source to schedule the event handlers, or is it the responsibility of the event ...
1
vote
1answer
299 views

Java 1.5 Swing: what is the correct way to perform long-running operation outside the EDT?

In a desktop Java 1.5 application (it has to run on a lot of MacOS X machines that will nerver see a 1.6 VM due to Apple politics) what is a correct way to perform a lengthy computation outside the ...
1
vote
0answers
45 views

Does java.awt.Desktop need to be used on the EDT?

Looking around I couldn't find a requirement that java.awt.Desktop is required to be used on the EDT, and I couldn't think of a reason why it should be, but I couldn't find anywhere that explicitly ...
1
vote
3answers
234 views

Java Swing - Can i run 2 GUI actions in the EDT?

In a JDialog, when user clicks a JButton i want to execute 2 GUI actions in the EDT : Showing another small JDialog with a busy icon in it to tell the user "Please wait while the wrong process ...
1
vote
1answer
657 views

Java - SwingWorker - problem in process() method

I am using javax.swing.SwingWorker for the first time. I want to update a JLabel from the interim results published by the swing worker as follows: publish("Published String"); Now to update the ...
1
vote
1answer
69 views

Is it possible that EDT violations cause NullPointerException in an external software?

I have a Java software that was recently integrated into another Java software (which I will call "external" software). We use listeners and call back mechanisms for "communication" between two ...
1
vote
2answers
479 views

How to wait for object creation in EDT without blocking EDT?

I am using an API in a Java library which is called from the event dispatch thread and requires me to return a fully-initialized UI component. It looks like this: public JDialog createDialog(); ...
1
vote
2answers
566 views

Is it possible to perform active rendering in Java Swing without being on the EDT?

I am looking into using Buffer Strategy and the following technique described on the Javadoc: // Main loop while (!done) { // Prepare for rendering the next frame // ... // Render single frame ...
1
vote
2answers
335 views

Getting the value from a Swing component from outside the EDT

My current code looks like this: final String[] value = new String[1]; SwingUtilities.invokeAndWait(new Runnable() { public void run() { value[0] = textArea.getText(); } }); The ...
1
vote
4answers
2k views

Java Swing design pattern for complex class interaction

I'm developing a java swing application that will have several subsystems. For all intents and purposes, let's assume that I am making an internet chat program with a random additional piece of ...
1
vote
2answers
820 views

Active rendering and the EDT (Swing animation)

How should I run animation in a Swing applet? I have an animation thread performing active rendering and it initially animates fine. Sometimes (anywhere from 1 minute to 2 hours later) it begins to ...
1
vote
2answers
288 views

Why EventDispatchThread in first place?

This is the design decision I don't understand. Both Android and JME follow the policy that the thread that started an app is the UI thread and you take care to offload resource-consuming stuff to ...
1
vote
2answers
523 views

Is there a good freeware clone of the VMS editor EDT for unix or the pc?

I would like to have the same editor available on all of the platforms I frequent. Emacs and Vi are not desired solutions.
0
votes
2answers
52 views

How do you make swing calls in a catch block

In the catch block I want to display a error message to textArea to display the error happening.
0
votes
1answer
24 views

Emacs Tpu-edt emulation scrolling margins startup

Can anyone help me get scrolling margins enabled automatically when I start emacs with tpu-edt emulation? Currently, my _emacs file (WinXP) contains the line: (setq term-setup-hook 'tpu-edt-on) ...
0
votes
3answers
155 views

SwingWorker process() GUI update difficulty with coalesced chunks

Sorry, bit long, but it is a bit involved... SwingWorker works entirely as expected in my app, except for one knotty problem which I'm struggling to solve, in the event that chunks arrive in ...
0
votes
1answer
48 views

Workaround for non-compliant JVM not sending WindowClosing events

Apple JVM on various OS X version have apparently been broken in that they do not generate the WindowClosing event when they should (for example if you close an app's main JFrame using by clicking on ...
0
votes
0answers
51 views

Modal / Thread blocking JPopupMenu?

I'd start by saying that I'm not looking for a modal JDialog with a menu-like implementation. My question is about code flow and code readability / maintainability in swing consider this code: ...

1 2