blob: 28a15115b66afb80889e8c952078b0b9bd225c4a [file] [log] [blame]
package org.eclipse.osee.ote;
public interface OTEStatusCallback<V> {
void complete(V done);
void setTotalUnitsOfWork(int totalUnitsOfWork);
void incrememtUnitsWorked(int count);
void log(String message);
void error(String message, Throwable th);
void error(String message);
}