blob: 23940fada2f0124f084fd17cb87e83a67c515bf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package dev.dnpm.analyzer;
import de.itc.onkostar.api.analysis.IProcedureAnalyzer;
public interface IPluginPart extends IProcedureAnalyzer {
default String getVersion() {
return "0.4.0";
}
default String getName() {
return "DNPM Plugin";
}
default String getDescription() {
return String.format("Plugin-Bestandteil '%s'", this.getClass().getSimpleName());
}
}
|