Skip to content
Snippets Groups Projects
Commit 06b02dab authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

poznamka pro task

parent 475e2b28
No related branches found
No related tags found
1 merge request!14Iss1026
...@@ -11,7 +11,9 @@ import cz.it4i.fiji.haas_spim_benchmark.core.Constants; ...@@ -11,7 +11,9 @@ import cz.it4i.fiji.haas_spim_benchmark.core.Constants;
import cz.it4i.fiji.haas_spim_benchmark.core.TaskComputation; import cz.it4i.fiji.haas_spim_benchmark.core.TaskComputation;
import javafx.beans.value.ObservableValue; import javafx.beans.value.ObservableValue;
import javafx.beans.value.ObservableValueBase; import javafx.beans.value.ObservableValueBase;
//TASK: Dodělat naplnění logs, aktualizace a getXXX
// Pokračovat zapojením do UI - akce v SPIMPipelineProgressViewWindow
// pro zobrazení TaskComputation
public class TaskComputationAdapter implements Closeable { public class TaskComputationAdapter implements Closeable {
private final TaskComputation computation; private final TaskComputation computation;
......
...@@ -16,6 +16,7 @@ public class RunRemoteFilesView { ...@@ -16,6 +16,7 @@ public class RunRemoteFilesView {
List<ObservableValue<RemoteFileInfo>> files = new LinkedList<>(); List<ObservableValue<RemoteFileInfo>> files = new LinkedList<>();
add(files, "Some file.txt", 100025456); add(files, "Some file.txt", 100025456);
@SuppressWarnings("serial")
class Window extends cz.it4i.fiji.haas.ui.FXFrame<RemoteFilesInfoControl>{ class Window extends cz.it4i.fiji.haas.ui.FXFrame<RemoteFilesInfoControl>{
public Window() { public Window() {
super(()-> new RemoteFilesInfoControl(files)); super(()-> new RemoteFilesInfoControl(files));
...@@ -29,7 +30,7 @@ public class RunRemoteFilesView { ...@@ -29,7 +30,7 @@ public class RunRemoteFilesView {
RemoteFileInfo file = new RemoteFileInfo() { RemoteFileInfo file = new RemoteFileInfo() {
@Override @Override
public long getSize() { public Long getSize() {
return size; return size;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment