A line/screen editor, found on vax/vms systems
0
votes
1answer
58 views
Thread output listener
I need to make a thread that start at swing button push and wait for input from rs232, process it and return String to my variable. The question is how to do that?
it should be something like that:
...
0
votes
1answer
21 views
Convert “Sat, 27 Apr 2013 08:54:17 EDT” to NSDate
Can somebody help in converting the text "Sat, 27 Apr 2013 08:54:17 EDT" into String. I have tried the NSDateFormatter with formatting style of "EEE, dd MMMM yyyy HH:mm:ssZ" but it returns only nil ...
1
vote
1answer
56 views
JoptionPane is blank sometimes
I use this style in my production code:
if (SwingUtilities.isEventDispatchThread()) {
JOptionPane.showMessageDialog(parent, "message", "title", JOptionPane.INFORMATION_MESSAGE);
} else {
...
0
votes
1answer
47 views
EDT in Java, how does it work, does it behave like normal thread (single or mutli)?
this is a beginner question:
I am working on a small chat program that use TCP to deliver messages, and I have a simple GUI to display it, I have finished the program, but the EDT has confused me a ...
1
vote
3answers
87 views
Java Swing separate core with GUI
I don't understand how to separate the core of my program with the GUI part of my program. Indeed, all the examples on the web say that any GUI action must be executed with ...
1
vote
1answer
61 views
Edit created figure with pylab
in MATLAB you can edit, if needed, figure files (.fig) - is there a similar functionality using pylab?
I can create the image I need but it comes out as .png that I have no control over - if I could ...
-2
votes
1answer
76 views
Why the following lines don't block the EDT?
public lyridisplay (java.awt.Frame parent, boolean modal) {
super(parent, modal);
initComponents();//to create a JList
/* folowing code inside try preforms DB operations*/
/*It ...
1
vote
1answer
61 views
How to execute several methods one after another in EDT (Swing)
I have 100 same JPanels, each contains JLabel with an icon and JLabel with text. When certain event occurs, I want to change icon and border of panel for 2.5 seconds, and then change them back. The ...
4
votes
3answers
252 views
Create swing components at runtime
i created the application and it behaves pretty much as expected.
the gui keeps responsive as long as the database query is running.
when creating the custom panels with SwingUtilities.invokeLater() ...
4
votes
1answer
161 views
Java Swing Thread changing UI - complications
I tried this for many hours.. I have a thread that changes a JTextField of my UI, which completely destroys the UI. The Thread (lets call it Thread A) is generated by an ActionListener. The .setText() ...
1
vote
1answer
92 views
find how many Runnables are waiting on the EventQueue
Is there any way to determine how many Runnables are currently queued in the EventQueue?... I mean the system EventQueue, i.e. all the Runnables to be run in the EDT. And mess with the queue, maybe?
...
1
vote
4answers
137 views
How to pass results from EDT back to a different thread?
I have the following use-case:
I have code executing in Thread A (not EDT). Then I want to ask the user a question, but this must be done on the EDT as it involves Swing code (opening a dialog etc). ...
2
votes
2answers
73 views
Dispatch a task from EDT to main?
I've been reading a bit about concurrency (which gives me a headache).
I understand you can set a task to run on the EDT from the main thread using:
SwingUtilities.invokeLater
but can you set a ...
0
votes
2answers
178 views
must all methods in AWT classes, i.e. non-Swing ones, be called in the EDT?
I recently learnt that Sun's/Oracle's most recent guidelines say that no Swing methods of any Swing objects, including constructors, must be called outside the EDT.
Does the same standard of rigour ...
2
votes
3answers
223 views
Java API “Run on EDT if not on EDT”
Just a musing about repetitive code I have:
Runnable run = new Runnable() {
@Override
public void run() {
// Some EDT code
}
};
if (!EventQueue.isDispatchThread()) {
...
1
vote
3answers
568 views
Need to flush the Java EDT ( event dispatch queue )
I have a Java app where many threads are writing to a StyledTextBox rapidly. At some point all the threads are terminated. However, the TextBox continues to receive text for a bit presumably because ...
0
votes
2answers
90 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
53 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)
...
1
vote
1answer
389 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 ...
0
votes
3answers
932 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 ...
3
votes
4answers
665 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 ...
0
votes
1answer
171 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 ...
3
votes
3answers
696 views
Manage GUI and EDT in a multi-task application
I developed a Java application for creating and extracting an archive - like WinRAR. You can create several archives at the same time with multithreading. And recently, I wanted to add an information ...
15
votes
5answers
8k 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
2k 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
2answers
670 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 ...
7
votes
6answers
2k 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 ...
1
vote
2answers
330 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
4answers
1k views
Best way to remove 'EDT' from a date returned via javascript with toLocaleString()
I'm relatively new to javascript, so this may be a really simple question. Is there an easy way to stop 'EDT' from printing after a date returned with toLocaleString?
Thanks!
2
votes
1answer
146 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
5answers
283 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 ...
3
votes
2answers
218 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 ...
2
votes
2answers
195 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. ...
0
votes
3answers
450 views
Use Java Full Screen Exclusive Mode with Swing Timer
Good day!
I wanted use a standart Swing Timer with Full Screen Exclusive Mode. To this effect I applied a SwingWorker to control the event when graphic mode should be set. All following steps are ...
0
votes
0answers
80 views
EDT and paintComponent
i redefine the paintComponent method in my component and i try to improve performance. First thing i try is to create a new Thread, inside which i invoke SwingUtilities.invokeLater(new ...
1
vote
1answer
273 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 ...
3
votes
3answers
499 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
3answers
383 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
420 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. ...
1
vote
3answers
406 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 ...
8
votes
1answer
488 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 ...
10
votes
2answers
2k 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
5answers
872 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
347 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 {
...
...
1
vote
4answers
198 views
EDT editor - a modern approach?
I used the EDT editor on VMS very long time ago. Is there modern implementation of this excellent text editor available? If so, are there source codes? Maybe it is circumvented by Emacs and Vim?
...
7
votes
3answers
1k 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() ...
3
votes
1answer
643 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 ...
2
votes
1answer
317 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 ...
3
votes
2answers
417 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 ...
1
vote
0answers
60 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 ...

