We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec7968e commit 828514fCopy full SHA for 828514f
src/main/java/org/scijava/app/AbstractApp.java
@@ -48,6 +48,11 @@ public abstract class AbstractApp extends AbstractRichPlugin implements App {
48
/** JAR manifest with metadata about the application. */
49
private Manifest manifest;
50
51
+ @Override
52
+ public String getTitle() {
53
+ return getInfo().getName();
54
+ }
55
+
56
@Override
57
public String getVersion() {
58
return getPOM() == null ? "Unknown" : getPOM().getVersion();
0 commit comments