Skip to content

Commit 1dab42c

Browse files
committed
fix: add timepointsID to DatasetInfo
1 parent 6513e2c commit 1dab42c

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/main/java/cz/it4i/fiji/rest/util/DatasetInfo.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,11 @@ public String getLabel() {
4040
}
4141

4242
public double[][] transformations;
43+
4344
public double[][] viewRegistrations;
4445

46+
public List<Integer> timepointIds;
47+
4548
@Override
4649
public String toString() {
4750
return "UUID = " + uuid +

src/test/java/cz/it4i/fiji/datastore/Fiji.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,10 @@ public void runBigDataBrowser() throws InterruptedException,
6363
true);
6464
result.get();
6565
}
66+
67+
public static void main(String[] args) {
68+
final ImageJ ij = new ImageJ();
69+
ij.ui().showUI();
70+
71+
}
6672
}

0 commit comments

Comments
 (0)