View Javadoc

1   // %1126721330229: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 the new feature
10   *
11   * @author <a href=mailto:draghetto@users.sourceforge.net>Massimiliano Amato</a>
12   */
13  public class StartingPanel extends InfoPanel {
14      //~ Static fields/initializers -----------------------------------------------------------------
15  
16      private static String[] messages = {
17                                             PluginProperty.getString("StartingPanel.0"), //$NON-NLS-1$
18      PluginProperty.getString("StartingPanel.1"), //$NON-NLS-1$
19      PluginProperty.getString("StartingPanel.2"), //$NON-NLS-1$
20      PluginProperty.getString("StartingPanel.3"), //$NON-NLS-1$
21      PluginProperty.getString("StartingPanel.4") //$NON-NLS-1$
22                                         };
23  
24      //~ Constructors -------------------------------------------------------------------------------
25  
26      /***
27       * Constructs a new instance.
28       */
29      public StartingPanel() {
30          super(messages);
31      }
32  }