Skip to content

Commit b1f4558

Browse files
committed
Add missing getType() implementations
1 parent b4c78f8 commit b1f4558

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/main/java/sc/fiji/labkit/ui/labeling/Labeling.java

+6
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,12 @@ public void setLabelOrder(Comparator<? super Label> comparator) {
303303
labels.sort(comparator);
304304
}
305305

306+
@Override
307+
public LabelingType< Label > getType()
308+
{
309+
return randomAccess().getType();
310+
}
311+
306312
public static class SetEntryAsBitType<T> extends BitType {
307313

308314
private Set<T> set = null;

src/main/java/sc/fiji/labkit/ui/utils/sparse/SparseRandomAccessIntType.java

+6
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@ private void set(MyRandomAccess position, int value) {
124124
}
125125
}
126126

127+
@Override
128+
public IntType getType()
129+
{
130+
return new IntType();
131+
}
132+
127133
// -- Helper classes --
128134

129135
private class MyRandomAccess extends Point implements RandomAccess<IntType> {

0 commit comments

Comments
 (0)