Search:

Type: Posts; User: Cornix

Search: Search took 0.33 seconds.

  1. Re: SwingWorker implemented - how to do additional GUI processing?

    There are probably many different kinds of properties and you should check within your PropertyChangeListener which particular property was changed.
    Perhaps the documentation can tell what kinds of...
  2. Re: SwingWorker implemented - how to do additional GUI processing?

    I am not 100% sure how you fire the event so perhaps what I said earlier, that your event is fired on the SwingWorker was not true. It is still a good practice though to put the code into an...
  3. Re: SwingWorker implemented - how to do additional GUI processing?

    Classes dont run on threads. Classes have absolutely nothing to do with threads.
    Objects dont run on threads either. Bot these things are completely disconnected.

    Each thread can run the methods...
  4. Re: SwingWorker implemented - how to do additional GUI processing?

    You have to do what your propertyChange listener does within the EDT since you call repaint(). I dont know if this is the only issue but try it and come back if you still need help.
Results 1 to 4 of 4