1
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
15
16 private static String[] messages = {
17 PluginProperty.getString("DisablePanel.0"),
18 PluginProperty.getString("DisablePanel.1"),
19 PluginProperty.getString("DisablePanel.2"),
20 PluginProperty.getString("DisablePanel.3")
21 };
22
23
24
25 /***
26 * Constructs a new instance.
27 */
28 public DisablePanel() {
29 super(messages);
30 }
31 }