]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graphviz/src/org/simantics/graphviz/continuation/ComputationThread.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graphviz / src / org / simantics / graphviz / continuation / ComputationThread.java
1 package org.simantics.graphviz.continuation;
2
3 public abstract class ComputationThread<T> extends Computation<T> implements Runnable {
4
5     Thread thread = new Thread(this);
6     
7     public void start() {
8         thread.start();
9     }
10     
11 }