The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
483 views

How to replace the AWT EventQueue with own implementation

In order to debug strange behavior in a Swing-application I'd like to replace the AWT EventQueue with my own implementation. Is this possible? How? Just in case you are interested: the ...
5
votes
2answers
610 views

Why do people run Java GUI's on the Event Queue

In Java, to create and show a new JFrame, I simply do this: public static void main(String[] args) { new MyCustomFrameClass().setVisible(true); } However, I have seen many people doing it like ...
4
votes
1answer
53 views

EventQueue inconsistent ID's

I have a problem with the following example code that shows inconsistent behavior for the EventQueue: public static void main( String[] args ) throws InvocationTargetException, InterruptedException { ...
3
votes
2answers
418 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
198 views

Java EventQueue. When should I consider using it?

I'm currently looking at the EventQueue class on the Oracle website: http://download.oracle.com/javase/1.4.2/docs/api/java/awt/EventQueue.html But I'm not sure when I should use it? Should I use it if ...
2
votes
1answer
66 views

How do I design a Java Swing model that also responds to back-end events?

I have written a GUI for operating a card reader - mainly consisting of an ADD button that brings up a FileChooser dialog and queues the chosen File onto a CardHopper, which is displayed visually as a ...
2
votes
7answers
2k views

Bloomberg API request timing out

Having set up a ReferenceDataRequest I send it along to an EventQueue Service refdata = _session.GetService("//blp/refdata"); Request request = refdata.CreateRequest("ReferenceDataRequest"); /* ...
1
vote
1answer
59 views
+100

NetBeans' HintsController and EventQueue

We are building an application based on the Netbeans Platform, and one part of it is an editor for a specific language we use. We have the following class to highlight errors in the syntax: class ...
1
vote
2answers
103 views

Get current instance of Runnable

I'm making an application that allows users to view task lists stored in different databases. So what happens is that, I have a list of the names of browsable databases (stored as a text file). ...
1
vote
2answers
91 views

why do i need EventQueue to start a new thread in java EDT? (JAVA)

Did I get it right? EDT is the main thread of GUI. To start a long operation, it's preferred to run it in new thread. So why do we need to use EventQueue for that? Why can't we simply create and run ...
1
vote
3answers
279 views

Waiting for invokeLater() to be called

Is there a more elegant way to do what I'm doing below? That is, is there a more elegant way than polling and sleeping, polling and sleeping, and so on to know when a Runnable.run() method has been ...
0
votes
2answers
95 views

JAVA GUI Button Question

so I have some code that looks like this: import java.awt.BorderLayout; import java.awt.Component; import java.awt.Dimension; import javax.swing.JButton; import javax.swing.JFrame; import ...
0
votes
5answers
201 views

Is update from EDT in swing an absolute rule or are there exceptions?

In Swing, the GUI is supposed to be updated by the EDT only, since the GUI components are not thread safe. My question is, if I have a single thread, other than the EDT, that is dedicated to update a ...