Package com.pnfsoftware.jeb.core
Interface IPluginInformation
- All Known Implementing Classes:
EditablePluginInformation
,PluginInformation
public interface IPluginInformation
Plugin information object.
-
Method Summary
Modifier and TypeMethodDescriptionGet the plugin author information.Get the plugin description.Get the maximum version of JEB core required to run this plugin.Get the minimum version of JEB core required to run this plugin.getName()
Get the plugin name.Get the plugin version.
-
Method Details
-
getName
String getName()Get the plugin name.- Returns:
- the optional name
-
getDescription
String getDescription()Get the plugin description.- Returns:
- the optional description string
-
getAuthor
String getAuthor()Get the plugin author information.- Returns:
- the optional author information
-
getVersion
Version getVersion()Get the plugin version.- Returns:
- the optional version
-
getMinimumCoreVersion
Version getMinimumCoreVersion()Get the minimum version of JEB core required to run this plugin.- Returns:
- the optional version
-
getMaximumCoreVersion
Version getMaximumCoreVersion()Get the maximum version of JEB core required to run this plugin.- Returns:
- the optional version
-