Package net.solarnetwork.node.setup
Interface PluginInfo
- All Known Implementing Classes:
BundlePluginInfo,LocalizedPluginInfo
public interface PluginInfo
Descriptive information about a plugin, designed to help users of the plugin.
- Version:
- 1.0
- Author:
- matt
-
Method Summary
Modifier and TypeMethodDescriptionGet a description of the plugin.getLocalizedDescription(Locale locale) Get a localized description of the plugin.getLocalizedName(Locale locale) Get a localized name of the plugin.getName()Get a name of the plugin.
-
Method Details
-
getName
String getName()Get a name of the plugin.- Returns:
- the name
-
getDescription
String getDescription()Get a description of the plugin.- Returns:
- the description
-
getLocalizedName
Get a localized name of the plugin.- Parameters:
locale- the desired locale- Returns:
- the name
-
getLocalizedDescription
Get a localized description of the plugin.- Parameters:
locale- the desired locale- Returns:
- the description
-