Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
175 views

SwingUtilites: how to return values from another thread in Java?

I am trying to make an application in Java. To make Swing work correctly, I did this: public static void main(String[] array){ String outerInput; SwingUtilities.invokeLater(new Runnable(){ ...
2
votes
1answer
116 views

Why do I need Swing Utilities and how do I use it?

This is mainly in regards to my question here, but I don't understand why Swing Utilities is needed and what it is used for. I'm designing a swing gui and I don't wanna miss out on anything that ...
2
votes
3answers
454 views

Java SwingUtilities.invokeLater

.addActionListener(new ActionListener(){ public void actionPerformed (ActionEvent e){ try{ ta.append("Searching Initiated at: "+datetime()+"\n"); ...
2
votes
2answers
2k views

Java Mouse Event Right Click

On my three button mouse MouseEvent.BUTTON2= Middle Click and MouseEvent.BUTTON3 = Right Click. Is this the case on a two button mouse? Thanks
1
vote
1answer
33 views

Best way to find real bounds of font

I was looking for a way to find the bounds on rendered text and encountered the FontMetrics getStringBounds method. This seems to ignore some font's descent and has an exaggerated ascent so that it ...
1
vote
1answer
359 views

SwingUtilities.invokeAndWait not running

The code within the run() method is not being executed. Can anyone tell me why? startButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { ...
1
vote
1answer
747 views

Java Swing main JFrame: why does SwingUtilities.getAncestorOfClass return null?

I intend to implement a Swing application which keeps all its JComponents within the main application window JFrame. It seems like clunky procedural code to give all my JPanel constructors a parameter ...
1
vote
1answer
2k views

Java - Difference between SwingWorker and SwingUtilities.invokeLater()

SwingWorker is used for the following purposes: For running long-running tasks in a different thread so as to prevent the GUI from being unresponsive For updating GUI with the results produced by ...
0
votes
1answer
88 views

Killing a thread within the SwingUtilities.invokeLater()

I have a swing application. Upon clicking a menuItem on the menu bar, I am trying to make an API call which will supposedly take some time. I didn't want the Swing app to get stuck/hanged until the ...
0
votes
1answer
200 views

GUI unable to update when executing process (SwingUtilities.invokeLater)

referring to my previous question at Unable to perform any action before Process.Runtime.exec statement line, I have changed my code into two part, a thread class CmdExec that has all code to execute ...
0
votes
2answers
126 views

DefaultStyledDocument.styleChanged(Style style) may not run in a timely manner?

I'm experiencing an intermittent problem with a class that extends javax.swing.text.DefaultStyledDocument. This document is being sent to a printer. Most of the time the formatting of the document ...