Skip to content

Commit 0856f79

Browse files
committed
Deprecate CodeGenerator classes
1 parent 6fa4c8e commit 0856f79

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/main/java/org/scijava/script/CodeGenerator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
* Code Generator Interface
3636
*
3737
* @author Grant Harris
38+
* @deprecated To be removed in SciJava Common 3.0.0.
3839
*/
40+
@Deprecated
3941
public interface CodeGenerator {
4042

4143
/** Adds delimiter character between arguments (typically a ','). */

src/main/java/org/scijava/script/CodeGeneratorJava.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
* {@link CodeGenerator} for Java.
3636
*
3737
* @author Grant Harris
38+
* @deprecated To be removed in SciJava Common 3.0.0.
3839
*/
40+
@Deprecated
3941
public class CodeGeneratorJava implements CodeGenerator {
4042

4143
static final String lsep = System.getProperty("line.separator");

src/main/java/org/scijava/script/InvocationObject.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@
3838
* the parameters that were passed to it.
3939
*
4040
* @author Grant Harris
41+
* @deprecated To be removed in SciJava Common 3.0.0.
4142
*/
43+
@Deprecated
4244
public class InvocationObject {
4345

4446
public String moduleCalled;

src/main/java/org/scijava/script/ParameterObject.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
* Holds a parameter, its type and value, for a recorded macro.
3636
*
3737
* @author Grant Harris
38+
* @deprecated To be removed in SciJava Common 3.0.0.
3839
*/
40+
@Deprecated
3941
public class ParameterObject {
4042

4143
public ParameterObject(final String param, final Class<?> type,

0 commit comments

Comments
 (0)