workcraft/workcraft

View on GitHub
workcraft/WorkcraftCore/src/org/workcraft/tasks/OutputInterpreter.java

Summary

Maintainability
A
0 mins
Test Coverage
package org.workcraft.tasks;

import org.workcraft.workspace.WorkspaceEntry;

public interface OutputInterpreter<T extends ExternalProcessOutput, U> {
    WorkspaceEntry getWorkspaceEntry();
    T getOutput();
    boolean isInteractive();
    U interpret();
}