 
                            ...
| Code Block | ||
|---|---|---|
| 
 | ||
| 
class ThreadStarter implements Runnable {
  public ThreadStarter() {
    // ...
  }
  public void startThread() {    
    Thread thread = new Thread(this);
    thread.start();
  }
  public void run() {
    // ...
  }
}
 | 
...