package org.simantics.graphviz.continuation; public abstract class ComputationThread extends Computation implements Runnable { Thread thread = new Thread(this); public void start() { thread.start(); } }