]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graphviz/src/org/simantics/graphviz/continuation/ComputationThread.java
Merge "Fix column width issues on HiDPI displays. KeyTiSelection fixes."
[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 }