Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate net.imagej.ui.swing.viewer.table.* #80

Merged
merged 1 commit into from Oct 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>17.1.1</version>
<version>23.2.0</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -125,6 +125,9 @@ Institute of Molecular Cell Biology and Genetics.</license.copyrightOwners>

<!-- NB: Deploy releases to the ImageJ Maven repository. -->
<releaseProfiles>deploy-to-imagej</releaseProfiles>

<!-- NB: Define scijava-ui-swing version until pom-scijava 24.0.0 is released -->
<scijava-ui-swing.version>0.12.0</scijava-ui-swing.version>
</properties>

<repositories>
Expand Down
Expand Up @@ -46,7 +46,10 @@
*
* @author Curtis Rueden
* @author Barry DeZonia
*
* @deprecated replaced by {@link org.scijava.ui.swing.viewer.table.SwingTableDisplayPanel}
*/
@Deprecated
public class SwingTableDisplayPanel extends JScrollPane implements
TableDisplayPanel
{
Expand Down
Expand Up @@ -48,7 +48,10 @@
* {@link JTable}.
*
* @author Curtis Rueden
*
* @deprecated replaced by {@link org.scijava.ui.swing.viewer.table.SwingTableDisplayViewer}
*/
@Deprecated
@Plugin(type = DisplayViewer.class)
public class SwingTableDisplayViewer extends AbstractTableDisplayViewer {

Expand Down