Skip to content

Commit 0c12425

Browse files
committed
Move DefaultTableIOPlugin to org.scijava.table.io
It does not belong in the base table package. And add Leon Yang as a contributor.
1 parent bd619b9 commit 0c12425

3 files changed

Lines changed: 20 additions & 11 deletions

File tree

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@
7171
<url>https://imagej.net/people/frauzufall</url>
7272
<properties><id>frauzufall</id></properties>
7373
</contributor>
74+
<contributor>
75+
<name>Leon Yang</name>
76+
<url>https://imagej.net/people/lnyng</url>
77+
<properties><id>lnyng</id></properties>
78+
</contributor>
7479
</contributors>
7580

7681
<mailingLists>

src/main/java/org/scijava/table/DefaultTableIOPlugin.java renamed to src/main/java/org/scijava/table/io/DefaultTableIOPlugin.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* #%L
3-
* I/O plugins for SciJava table objects.
3+
* Table structures for SciJava.
44
* %%
5-
* Copyright (C) 2017 - 2020 Board of Regents of the University of
6-
* Wisconsin-Madison and University of Konstanz.
5+
* Copyright (C) 2012 - 2022 Board of Regents of the University of
6+
* Wisconsin-Madison, and Friedrich Miescher Institute for Biomedical Research.
77
* %%
88
* Redistribution and use in source and binary forms, with or without
99
* modification, are permitted provided that the following conditions are met:
@@ -28,7 +28,7 @@
2828
* #L%
2929
*/
3030

31-
package org.scijava.table;
31+
package org.scijava.table.io;
3232

3333
import java.io.IOException;
3434
import java.util.ArrayList;
@@ -48,9 +48,9 @@
4848
import org.scijava.io.location.Location;
4949
import org.scijava.plugin.Parameter;
5050
import org.scijava.plugin.Plugin;
51-
import org.scijava.table.io.ColumnTableIOOptions;
52-
import org.scijava.table.io.TableIOOptions;
53-
import org.scijava.table.io.TableIOPlugin;
51+
import org.scijava.table.DefaultGenericTable;
52+
import org.scijava.table.GenericTable;
53+
import org.scijava.table.Table;
5454
import org.scijava.util.FileUtils;
5555

5656
/**

src/test/java/org/scijava/table/DefaultTableIOPluginTest.java renamed to src/test/java/org/scijava/table/io/DefaultTableIOPluginTest.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* #%L
3-
* I/O plugins for SciJava table objects.
3+
* Table structures for SciJava.
44
* %%
5-
* Copyright (C) 2017 - 2020 Board of Regents of the University of
6-
* Wisconsin-Madison and University of Konstanz.
5+
* Copyright (C) 2012 - 2022 Board of Regents of the University of
6+
* Wisconsin-Madison, and Friedrich Miescher Institute for Biomedical Research.
77
* %%
88
* Redistribution and use in source and binary forms, with or without
99
* modification, are permitted provided that the following conditions are met:
@@ -28,7 +28,7 @@
2828
* #L%
2929
*/
3030

31-
package org.scijava.table;
31+
package org.scijava.table.io;
3232

3333
import static org.junit.Assert.assertEquals;
3434
import static org.junit.Assert.assertTrue;
@@ -50,6 +50,10 @@
5050
import org.scijava.io.handle.DataHandleService;
5151
import org.scijava.io.location.FileLocation;
5252
import org.scijava.io.location.Location;
53+
import org.scijava.table.DefaultGenericTable;
54+
import org.scijava.table.GenericTable;
55+
import org.scijava.table.Table;
56+
import org.scijava.table.io.DefaultTableIOPlugin;
5357
import org.scijava.table.io.TableIOOptions;
5458
import org.scijava.table.io.TableIOPlugin;
5559

0 commit comments

Comments
 (0)