We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b245c1 commit 57729a2Copy full SHA for 57729a2
src/main/java/org/scijava/AbstractGateway.java
@@ -37,6 +37,7 @@
37
import org.scijava.app.StatusService;
38
import org.scijava.command.CommandService;
39
import org.scijava.console.ConsoleService;
40
+import org.scijava.convert.ConvertService;
41
import org.scijava.display.DisplayService;
42
import org.scijava.event.EventHistory;
43
import org.scijava.event.EventService;
@@ -118,6 +119,10 @@ public ConsoleService console() {
118
119
return get(ConsoleService.class);
120
}
121
122
+ public ConvertService convert() {
123
+ return get(ConvertService.class);
124
+ }
125
+
126
@Override
127
public DisplayService display() {
128
return get(DisplayService.class);
0 commit comments