From 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Fri, 24 Jan 2014 14:43:46 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1288 : Migrate I18n and logging support to i18n framework and SLF4J
---
opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/AbstractIndexPanel.java | 23 ++++++++++++-----------
1 files changed, 12 insertions(+), 11 deletions(-)
diff --git a/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/AbstractIndexPanel.java b/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/AbstractIndexPanel.java
index e3e777c..7c40357 100644
--- a/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/AbstractIndexPanel.java
+++ b/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/AbstractIndexPanel.java
@@ -22,6 +22,7 @@
*
*
* Copyright 2008-2010 Sun Microsystems, Inc.
+ * Portions Copyright 2014 ForgeRock AS
*/
@@ -48,7 +49,7 @@
import org.opends.guitools.controlpanel.ui.components.TitlePanel;
import org.opends.guitools.controlpanel.ui.renderer.CustomListCellRenderer;
import org.opends.guitools.controlpanel.util.Utilities;
-import org.opends.messages.Message;
+import org.forgerock.i18n.LocalizableMessage;
import org.opends.server.admin.std.meta.LocalDBIndexCfgDefn;
import org.opends.server.admin.std.meta.LocalDBIndexCfgDefn.IndexType;
import org.opends.server.types.AttributeType;
@@ -64,8 +65,8 @@
/**
* Title panel.
*/
- protected TitlePanel titlePanel = new TitlePanel(Message.EMPTY,
- Message.EMPTY);
+ protected TitlePanel titlePanel = new TitlePanel(LocalizableMessage.EMPTY,
+ LocalizableMessage.EMPTY);
/**
* Attributes combo box.
*/
@@ -148,15 +149,15 @@
protected JPanel typesPanel = new JPanel(new GridBagLayout());
/**
- * Message to be displayed to indicate that an index is not configurable.
+ * LocalizableMessage to be displayed to indicate that an index is not configurable.
*/
- protected Message NON_CONFIGURABLE_INDEX =
+ protected LocalizableMessage NON_CONFIGURABLE_INDEX =
INFO_CTRL_PANEL_NON_CONFIGURABLE_INDEX_LABEL.get();
/**
- * Message to be displayed to indicate that an index has been modified.
+ * LocalizableMessage to be displayed to indicate that an index has been modified.
*/
- protected Message INDEX_MODIFIED = INFO_CTRL_PANEL_INDEX_MODIFIED_LABEL.get();
+ protected LocalizableMessage INDEX_MODIFIED = INFO_CTRL_PANEL_INDEX_MODIFIED_LABEL.get();
/**
* Array of checkboxes.
@@ -175,12 +176,12 @@
/**
* Custom attributes message.
*/
- protected Message CUSTOM_ATTRIBUTES =
+ protected LocalizableMessage CUSTOM_ATTRIBUTES =
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTES_LABEL.get();
/**
* Standard attributes message.
*/
- protected Message STANDARD_ATTRIBUTES =
+ protected LocalizableMessage STANDARD_ATTRIBUTES =
INFO_CTRL_PANEL_STANDARD_ATTRIBUTES_LABEL.get();
/**
@@ -392,9 +393,9 @@
* @return a list of error message with the problems encountered in the data
* provided by the user.
*/
- protected List<Message> getErrors()
+ protected List<LocalizableMessage> getErrors()
{
- ArrayList<Message> errors = new ArrayList<Message>();
+ ArrayList<LocalizableMessage> errors = new ArrayList<LocalizableMessage>();
setPrimaryValid(lEntryLimit);
setPrimaryValid(lType);
--
Gitblit v1.10.0