Plugin name
It's easy to define a plugin's name by super constructor parameter. just pass whatever you want as like below:
Plugin.java
public Plugin() throws Exception {
super("whatever you want");
}
It's easy to define a plugin's name by super constructor parameter. just pass whatever you want as like below:
public Plugin() throws Exception {
super("whatever you want");
}