Interface IPluginInfo

All Known Implementing Classes:
PluginInfo

public interface IPluginInfo
The plugin information includes name, class name, and description. The localizable name and description are information for end-users.

The class name can be used to create an instance of the plugin.

Version:
$Revision$, $Date$
  • Method Details

    • getName

      String getName(Locale locale)
      Retrieves the localized plugin name.
      Parameters:
      locale - end-user locale
      Returns:
      plugin name
    • getDescription

      String getDescription(Locale locale)
      Retrieves the localized plugin description.
      Parameters:
      locale - end-user locale
      Returns:
      plugin description
    • getClassName

      String getClassName()
      Retrieves the class name of the plugin. Instance of plugin can be created with

      Class.forName(info.getClassName());

      Returns:
      java class name