Filling SWT table object using a separated thread class ...

Posted by erlord on Stack Overflow See other posts from Stack Overflow or by erlord
Published on 2010-03-14T09:10:51Z Indexed on 2010/03/14 9:15 UTC
Read the original article Hit count: 327

Filed under:
|
|
|

Hi all

I've got a code snippet by the swt team that does exactly what I need. However, there is a part I want to separate into another class, in particular, the whole inline stuff. In response to my former question, it has been suggested that Callable should be used in order to implement threaded objects. It is suggested to make use of an implementation of runnable or better callable, since I do need some kind of return.

However, I don't get it. My problems are:

  1. In the original code, within the inline implementation of the method run, some of the parents objects are called. How would I do this when the thread is separated? Pass the object via the C'tor's parameter?
  2. In the original code, another runnable object is nested within the runnable implementation. What is it good for? How to implement this when having separated the code? Furthermore, this nested runnable again calls objects created by the main method.

Please, have mercy with me, but I am still quite a beginner and my brain is near collapsing :-( All I want is to separate all the threaded stuff into another class and make the program do just the same thing as it already does. Help please!

Again thank you very much in advance for any useful suggestions, hints, examples etc...

Regs Me

© Stack Overflow or respective owner

Related posts about java

Related posts about threads