The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
51 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 ...
0
votes
1answer
84 views

JProgressBar indeterminate thread

I have a problem while creating a JProgressBar which is set to indeterminate. The following code is my implementation of the JProgressBar and is called/constructed from another class: public class ...
2
votes
3answers
91 views

MultiThreading locking up Java Swing GUI

I'm working on a project for a multiple user paint program and I have run into a problem with my GUI locking up. I have most of the program done except for this error, it is a rather large program so ...
0
votes
2answers
47 views

Determining when a process within invokeLater has completed

I am using invokeLater() to load html pages within a JEditPane which is inside a JPanel which is inside a JTabbedPane. All of my methods work fine for loading the html. The thing I am having trouble ...
1
vote
2answers
87 views

Add JInternalFrame to JDesktopPane using a button inside other JInternalFrame

This snippet code I got from http://stackoverflow.com/a/6868039/2240900 how to add the internal2 to desktoppane1 using a button placed somewhere in internal1. In the ActionListener added to your ...
2
votes
2answers
114 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 ...
0
votes
2answers
50 views

Closing parent element of a JPanel

Is it possible to close parent element of a component .. probably a JFrame/JInternalFrame from a JPanel? if yes how it can be done?
3
votes
1answer
149 views

SwingUtilities.convertMouseEvent() sets button to NOBUTTON in Java7

As we know MouseEvent gets lost in JScrollPane, i.e. not delivered to a parent, it is an old bug not fixed yet: https://forums.oracle.com/forums/thread.jspa?threadID=1362237 So I was using ...
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 ...
2
votes
1answer
111 views

SwingUtilities.windowForComponent(JFrame) returns null

frame is the only JFrame in my Swing app. Since JFrame extends Window I have believed from description and method name that the code should return the frame itself. ...
1
vote
1answer
78 views

Mouse movement inside grid

I've created a grid, and a double array of my class gridBalls. gridBalls has an int type, and you pass to it a number to determine what to draw in the grid, like 0 blank, 1 ball etc. What would ...
2
votes
2answers
200 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
1answer
38 views

How do I check to see if a whole component is on screen?

I'm working with a 3rd party plugin which includes a customized popup. This popup is added to a tab pane and when it appears, if to close to the JFrame border, only part of it will appear and the rest ...
3
votes
2answers
185 views

SwingUtilities.convertPoint() returns negative values

I am facing this issue in another project which has complicated JPanels structure and much code. In there I have a following snippet Point point = label.getLocation(); Point point2 = ...
1
vote
1answer
14 views

what does this method invokeOnEventDispatchThread do?

I came across the following piece of code in my code base and I dont understand how it works.I'm a bit of a novice at Swing, hence sorry if it seems like a silly question. public static void ...
0
votes
1answer
171 views

JAVA Swing Gui Window Hangs

I am having an issue with SWING GUI or at least I think it is the swing gui. Here is my main code file: /** * */ package com.tda.t2.ctas.slasher; import javax.swing.SwingUtilities; import ...
0
votes
3answers
181 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 ...
1
vote
4answers
217 views

Updating a textfield using SwingUtilities.invokeLater()

My program consists of a simple gui and a class that extends thread! i am trying to learn how to use SwingUtilities.invokeLater() in order to use it to update a textfield in my GUI but how do i reach ...
1
vote
1answer
312 views

How to add mouse listener to a JPanel image?

I have painted a BufferedImage on a JPanel with the following code. protected void paintComponent(Graphics g) { if (image != null) { super.paintComponent(g); Graphics2D g2 = ...
1
vote
1answer
79 views

html files encryption for client side

I am using lucene for indexing and searching on client side after searching the keyword i want to display the html files there . So is there any way to store and access the html files . actually the ...
2
votes
6answers
304 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 ...
0
votes
3answers
537 views

How to find location of JTree node on screen

I want to search a particular node of JTree and determine its location on screen. My aim is to start hovering mouse from the top left corner of that node and perform a mouse click in my JFC. Can ...
0
votes
3answers
886 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) { ...
3
votes
1answer
135 views

Component coordinates

I'm trying to get components coordinate's in relation to its parent. For example, when I have a JFrame of size 500x500, which has a child - JPanel - at [50, 10] I should get [50, 10] as a result. ...
1
vote
2answers
140 views

Java SwingUtilities.invokeLater() timing with drag and drop

Java Swing's SwingUtilities.invokeLater() allows you to enqueue a thread to run after the last AWT event (user gesture) is processed. Is invokeLater() guaranteed to wait until after the completion of ...
1
vote
2answers
637 views

java applet: JProgressBar updating/refreshing only at completion

I'm just trying to iterate in for loop and updating values of JProgressBar inside the loop, initiating SwingUtilities.invokeLater.. but it's only updating after completion. Below is my simple code: ...
2
votes
4answers
99 views

Does system.out.println have to be on edt?

I was running some code that did a printout in a swingworker. I was not getting printouts so I used SwingUtilities.invokeLater and now it works. I did not expect this result, how did this happen? I ...
3
votes
2answers
657 views

SwingUtilities invokeLater GUI update with JList

Good day, I've read a few other stack overflow postings and other tutorials, but I can't get my GUI to update correctly after a button starts a long process. I've attached the full code of the ...
0
votes
1answer
343 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 ...
1
vote
2answers
71 views

Scrolling to the other part of the webpage

I am rendering a webpage and trying to scroll to a location within it. However, the scrolling doesn't work. This is my code... import org.lobobrowser.html.*; import ...
4
votes
3answers
419 views

EventQueue.invokeLater vrs SwingUtilities.invokeLater

Can someone highlight on the differences between these two and the instances both are required?! I have an application which uses both intercheably, but want to know if one is better than the other. ...
5
votes
1answer
963 views

Change Font at runtime

Please is there another way how to change Font at runtime as using FontUIResource, for the whole AWT/Swing GUI, without any knowledge / interest about if there are local variables and type of ...
7
votes
2answers
3k views

Java/Swing: Obtain Window/JFrame from inside a JPanel

How can I get the JFrame in which a JPanel is living? My current solution is to ask the panel for it's parent (and so on) until I find a Window: Container parent = this; // this is a JPanel do { ...
-2
votes
1answer
331 views

java - string return method is called before any value is assigned to string

My application is supposed to read and write to a Serial Port. The data is read in the EventListener of the PortReader class. I wish to assign this data to a global String variable (private String ...
0
votes
1answer
111 views

java - cannot assign value in invokeAndWait to global string variable

I am developing an application using the java-simple-serial-connector API to read and write to serial port. I am facing a problem when I try to read data bytes and assign them to a global String ...
1
vote
1answer
99 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 ...
5
votes
5answers
621 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(){ ...
3
votes
1answer
946 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 ...
0
votes
1answer
428 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
358 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 ...
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
1answer
1k 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) { ...
12
votes
2answers
15k 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
2k 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 ...
5
votes
1answer
4k 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
2answers
173 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 ...