The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
41 views

Successfully updating Look and Feel but still having errors

I am trying to update my look and feel without any errors, but I can't figure out what I am doing wrong. This is my Window class: public class Window extends JFrame { private static final long ...
1
vote
3answers
24 views

writing to JEditorPane fast

In the code below I would like to write onto JEditorPane the numbers 0 to 10000. However, the JEditorPane does not display anything unless either it is completely done ( printing all 0 to 10000 at ...
-1
votes
2answers
46 views

Explain Runnable and Invoke()

Can someone please explain this below written code ? public void setSelectedFolder(final File f){ if(f != null){ Runnable r=new Runnable(){ public void run(){ ...
1
vote
1answer
53 views

Weird thing with GUI and Threads in java

Given the following code: public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { public void run() { ClientGUI gui = new ...
1
vote
1answer
48 views

SwingUtilities.invokeLater() displaying just during one frame

I'm using Swing in order to create a little java 2D game. I only try to display an image. Since i'm not on the EDT I'm using SwingUtilities.invokeLater() to do the stuff. When I use it, image is not ...
1
vote
2answers
33 views

Swing Runnable with parameters

I would like to run new Swing thread and pass a parameter into them. Something like this: String str; SwingUtilities.invokeLater(new Runnable() { public void run() { Play game = new ...
0
votes
0answers
41 views

event dispatch thread [duplicate]

what is difference between event dispatch thread and any normal thread like main thread in creation swing compoments and handling events , what is features of event dispatch thread over main thread ...
2
votes
2answers
119 views

Should Swing GUI application be controlled from Event Dispatcher or main thread?

I've read a few books about Java. In all of them there was at least one chapter teaching GUI programming. In all of them, creating a simple form application was following this logic: MyFrame.java ...
-1
votes
4answers
98 views

Why invokeAndWait() is preferred for applets and not for standalone applications? [closed]

The java docs says: In an applet, the GUI-creation task must be launched from the init() method using invokeAndWait(); otherwise, init() may return before the GUI is created, which may cause ...
2
votes
2answers
110 views

Why to use SwingUtilities.invokeLater in main method?

After years of Java programming I always used to create my main() methods like this : public static void main(String[] args) { runProgram(); } But recently I studied some codes from the Web ...
1
vote
2answers
35 views

Run Thread only when whole UI is up

I want to run a thrad only when whole UI is up properly ie. all component's paint() is completed. I tried with SwingUtilities.invokeLater(), but still the thread runs before whole UI is up or when all ...
0
votes
1answer
78 views

Document not updating for combo box Java

I am writing Bing/Google instant search kind of feature in combo box, so this combo box provides suggestions to the user based on what he has typed. The program works like a charm but their is one bug ...
0
votes
0answers
33 views

Invokelater() causing issue in windows7

I have this method which is called at initial loading. SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); But because of this ctrl+O or fileopen function ...
1
vote
0answers
53 views

Is static assignment of Swing object OK?

For example: can this be used in a class MyPane? public class MyPane extends JRootPane{ public static JCheckBox Debug= new JCheckBox("Debug"); .... } Will Swing have problem? Should we always ...
4
votes
3answers
238 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() ...
2
votes
2answers
189 views

SwingUtilities.invokeLater : Issues

I never understood SwingUtilities.invokeLater,that is the reason i kept avoiding it until now.But its very important to make Swing Thread safe. Well please excuse me, as this is my first time with ...
0
votes
3answers
178 views

Custom Modal Dialog

I am creating my own dialog which is basically a JPanel set as the glasspane on a JFrame. I want to make my dialog modal in the sense that all the code after the setVisible() is not executed while the ...
6
votes
2answers
362 views

Blackberry class equivalent to AsyncTask?

I searched a lot on this. But couldn't get a solution. My requirement is to have a thread (alive all the time) that maintains a socket connection between Blackberry device and a server and exchanges ...
1
vote
5answers
224 views

Cannot update Swing component under a heavy process

I am running a very heavy process under an anonymous SwingWorker thread. In the meantime, I'm reporting progress to the GUI using a progress bar. However, Swing threading is doing me in. It's simply ...
2
votes
6answers
296 views

Why should I use a separate thread to show a GUI in JAVA

This simple issue confuses me. You can display a JAVA GUI application by setting the frames' setVisible property true. But in almost all the examples I found on internet they use a separate thread to ...
3
votes
2answers
304 views

Java SwingUtilities.invokeLater update TextArea

I have the following classes: MainServer TCPServer UDPServer I create new instances of TCPServer and UDPServer classes (start) from MainServer class, where my GUI is initialized. In this GUI I ...
0
votes
3answers
860 views

What is SwingUtilities.invokeLater [duplicate]

Possible Duplicate: What does SwingUtilities.invokeLater do? SwingUtilities.invokeLater I have seen this little piece of code hundreds of times: public static void main(String[] args) { ...
0
votes
1answer
36 views

invoke and wait which interacts with a sub class

I have found many fine examples of invoke later and invoke and wait across the site. However the issue that I have is that the I would like to get a response from a class which is called by the main ...
5
votes
4answers
3k views

Swing Splash screen with progress bar

This is my splash screen code, public class SplashScreen extends JWindow { private static final long serialVersionUID = 1L; private BorderLayout borderLayout = new BorderLayout(); private JLabel ...
4
votes
1answer
250 views

Should i use SwingUtilities.invokeLater() inside of SwingWorker.doInBackground()?

The common way to interact with EDT from swing worker is useing get() method. But i have a long task and code like this: public Void doInBackground() { for(Object o : objects) { ...
-1
votes
2answers
177 views

InvokeLater Freezes the GUI

I'm trying to simulate a simple thermostat, using multi-threading. The thermostat should increase the temperature in order to reach the value that the user requested for which is "Max" value in the ...
0
votes
1answer
338 views

SwingUtilities.invokeLater not working as expected

I am working on a concurrent canvas written in Java which will make the users think that they are drawing on the canvas in parallel. In order to achieve the user perceived parallelism, I get them to ...
0
votes
1answer
951 views

Using invokeLater( ) in UiApplication

Can i include my try catch block with invokeLater statement in UiApplication for blackberry. What is the exact purpose of using an invokeLater mothod.And how is it to be invoked? Here is the code ...
0
votes
3answers
281 views

Class not found when using SwingUtilities.invokeLater in OSGi Bundle

(EDIT: Problem is solved - see details at the end) I want to create a Swing JFrame with a WindowAdapter in an OSGi Bundle. When I do this using SwingUtilities.invokeLater, the WindowAdapter class is ...
1
vote
3answers
179 views

Using Event Queue to execute a simple method in main()

I am working on a Java application that was developed by some guy as part of a research project. Following is the main method: public static void main(String[] args) { ...
0
votes
2answers
76 views

Blackberry screen navigation probelm

I have a Screen name DownloaderScreen when the screen start it will start download some file and when download is complete it will go forward to next screen autometically. I using the following code. ...
1
vote
2answers
115 views

Thread is not returning back from SwingUtilities.invokeLater to main thread

I am writing my code in swing. To launch a private function of another class that can be called in awt thread . i simply write the code of that function in my class in SwingUtilities.invokeLater ...
1
vote
1answer
302 views

To invokeLater() or Not

I was writing an example to showcase the usage of SwingUtilities.invokeLater(). I came to realize this simple example (code included) I have written didn't warranty the use of invokeLater(). I do ...
1
vote
5answers
431 views

Dynamic JTree and SwingUtilities.invokeLater() does nothing

To create my dynamic JTree, I was reading the tutorial about Dynamic JTrees on this website in chapter "4.2 OutlineNode.java" Now I have implemented it and recognize that loading the data in the GUI ...
0
votes
1answer
464 views

JavaScript equivalent of SwingUtilities.invokeLater()

Is there any equivalent of Java's invokeLater() method of SwingUtilities in Javascript? UPDATE 1 So, will setTimeout() with zero delay do exactly the same as invokeLater()?
4
votes
2answers
920 views

How can I create an “event-driven” background thread in Java?

I like the simplicity of invokeLater() for sending units of work to the AWT EDT. It would be nice to have a similar mechanism for sending work requests to a background thread (such as SwingWorker) ...
1
vote
4answers
800 views

How does a Java thread synchronize with invokeLater()?

I have a non-GUI thread that starts a JFrame using java.awt.EventQueue.invokeLater(new Runnable() { public void run() { cardReadPunchGUI = new IBM1622GUI(); // instantiate ...
3
votes
2answers
660 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 ...
1
vote
3answers
690 views

BlackBerry - Thread not responding

I'm sorry that this question is a bit vague but I've not been able to get any useful info from debugging. I have a thread that I call using new Thread().Start, it will then run for a a short time and ...
2
votes
3answers
1k views

Java SwingUtilities.invokeLater

.addActionListener(new ActionListener(){ public void actionPerformed (ActionEvent e){ try{ ta.append("Searching Initiated at: "+datetime()+"\n"); ...
1
vote
3answers
462 views

Use invokeLater to show dialogs one by one

In 2 different action listeners, a dialog will be shown when some conditions are met. If both of the action listeners need to show dialog, 2 dialogs will be shown at the same time. But I want them to ...
5
votes
5answers
1k views

Can anybody explain to me this short code, please?

I have trouble understanding this simple code: javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); Can anybody please explain me how it ...
4
votes
5answers
3k views

Why does InvokeLater cause my JFrame not to display correctly?

Ok I've read an searched all over the web, and I've not found the solution to my problem yet, perhaps I'm missing something simple, hence here I am... I've got a rather large project, that handles ...