1 package org.catacomb.numeric.data;
2
3 import org.catacomb.interlish.structure.Labelled;
4 import org.catacomb.interlish.structure.Named;
5
6
7 public interface NumDataItem extends Named, Labelled {
8
9
10 String getUnit();
11
12 }