imagej / imagej-common

ImageJ core data model
https://imagej.net/libs/imagej-common
BSD 2-Clause "Simplified" License
10 stars 18 forks source link

Deprecate net.imagej.table.* in favour of org.scijava.table.* #78

Closed imagejan closed 5 years ago

imagejan commented 5 years ago

Note that ResultsTable and DefaultResultsTable as well as TableService and DefaultTableService have not been deprecated. Instead, their API changed from net.imagej.table.Table to org.scijava.table.Table. In addition, DefaultTableDisplay has been reduced to a stub, as functionality for displaying 1D and 2D double arrays is now in org.scijava.table.DefaultTableDisplay.

These changes require increasing the major version (or minor as we are pre-1.0.0).

imagejan commented 5 years ago

I amended the commit and also deprecated the DisplayViewer-related classes in net.imagej.ui.viewer.table.*.

The replacements are implemented in scijava-table.

This should be good to go now from my side.

ctrueden commented 5 years ago

Thanks very much for following through on this, @imagejan! Much appreciated.