View Javadoc

1   // %1126721330166:hoplugins.transfers.ui.component%
2   package hoplugins.transfers.ui.component;
3   
4   import hoplugins.commons.ui.InfoPanel;
5   import hoplugins.commons.utils.PluginProperty;
6   
7   
8   /***
9    * A Panel to inform the user of disabling the feature effect
10   *
11   * @author <a href=mailto:draghetto@users.sourceforge.net>Massimiliano Amato</a>
12   */
13  public class DisablePanel extends InfoPanel {
14      //~ Static fields/initializers -----------------------------------------------------------------
15  
16      private static String[] messages = {
17                                             PluginProperty.getString("DisablePanel.0"), //$NON-NLS-1$
18      PluginProperty.getString("DisablePanel.1"), //$NON-NLS-1$
19      PluginProperty.getString("DisablePanel.2"), //$NON-NLS-1$
20      PluginProperty.getString("DisablePanel.3")
21                                         }; //$NON-NLS-1$
22  
23      //~ Constructors -------------------------------------------------------------------------------
24  
25      /***
26       * Constructs a new instance.
27       */
28      public DisablePanel() {
29          super(messages);
30      }
31  }