View Javadoc

1   // %3815340815:hoplugins.teamAnalyzer.ui.component%
2   package hoplugins.teamAnalyzer.ui.component;
3   
4   import hoplugins.commons.ui.InfoPanel;
5   
6   import hoplugins.teamAnalyzer.SystemManager;
7   
8   
9   /***
10   * An about panel that shows info about the plugin
11   *
12   * @author <a href=mailto:draghetto@users.sourceforge.net>Massimiliano Amato</a>
13   */
14  public class AboutPanel extends InfoPanel {
15      //~ Static fields/initializers -----------------------------------------------------------------
16  
17      private static String[] messages = new String[4];
18  
19      static {
20          messages[0] = SystemManager.getPlugin().getPluginName();
21          messages[1] = "Version: " + SystemManager.getPlugin().getVersion() + " - 01/05/2005";
22          messages[2] = "By Draghetto";
23          messages[3] = "Copyright (c) 2004-2005";
24      }
25  
26      //~ Constructors -------------------------------------------------------------------------------
27  
28      /***
29       * Constructs a new instance.
30       */
31      public AboutPanel() {
32          super(messages);
33      }
34  }