]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graphviz/src/org/simantics/graphviz/continuation/Continuation.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graphviz / src / org / simantics / graphviz / continuation / Continuation.java
1 package org.simantics.graphviz.continuation;
2
3 public interface Continuation<T> {
4     void succeeded(T result);
5     void failed(Exception exception);
6 }