From 2a3158aad80fc910b83336485b3e545dea50066c Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 09:23:30 +0000
Subject: [PATCH] guitools + quicksetup: added @Override + Autorefactor'ed comments
---
opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/GlobalAdministratorPanel.java | 28 ++++++++++++----------------
1 files changed, 12 insertions(+), 16 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/GlobalAdministratorPanel.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/GlobalAdministratorPanel.java
index d05b3f9..ab645a2 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/GlobalAdministratorPanel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/GlobalAdministratorPanel.java
@@ -12,7 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2008 Sun Microsystems, Inc.
- * Portions Copyright 2013-2015 ForgeRock AS.
+ * Portions Copyright 2013-2016 ForgeRock AS.
*/
package org.opends.quicksetup.installer.ui;
@@ -39,9 +39,7 @@
import org.opends.quicksetup.ui.QuickSetupStepPanel;
import org.opends.quicksetup.ui.UIFactory;
-/**
- * This class is used to set the global administrator parameters.
- */
+/** This class is used to set the global administrator parameters. */
public class GlobalAdministratorPanel extends QuickSetupStepPanel
{
private static final long serialVersionUID = 4266485298770553875L;
@@ -66,7 +64,7 @@
addFocusListeners();
}
- /** {@inheritDoc} */
+ @Override
public Object getFieldValue(FieldName fieldName)
{
Object value = null;
@@ -78,7 +76,7 @@
return value;
}
- /** {@inheritDoc} */
+ @Override
public void displayFieldInvalid(FieldName fieldName, boolean invalid)
{
JLabel label = getLabel(fieldName);
@@ -96,7 +94,7 @@
}
}
- /** {@inheritDoc} */
+ @Override
protected Component createInputPanel()
{
JPanel panel = new JPanel(new GridBagLayout());
@@ -159,19 +157,19 @@
return panel;
}
- /** {@inheritDoc} */
+ @Override
protected LocalizableMessage getInstructions()
{
return INFO_GLOBAL_ADMINISTRATOR_PANEL_INSTRUCTIONS.get();
}
- /** {@inheritDoc} */
+ @Override
protected LocalizableMessage getTitle()
{
return INFO_GLOBAL_ADMINISTRATOR_PANEL_TITLE.get();
}
- /** {@inheritDoc} */
+ @Override
public void endDisplay()
{
if (lastFocusComponent != null)
@@ -211,9 +209,7 @@
return value;
}
- /**
- * Creates the components and populates the Maps with them.
- */
+ /** Creates the components and populates the Maps with them. */
private void populateLabelAndFieldMaps()
{
HashMap<FieldName, LabelFieldDescriptor> hm = new HashMap<>();
@@ -273,18 +269,18 @@
return hmFields.get(fieldName);
}
- /**
- * Adds the required focus listeners to the fields.
- */
+ /** Adds the required focus listeners to the fields. */
private void addFocusListeners()
{
final FocusListener l = new FocusListener()
{
+ @Override
public void focusGained(FocusEvent e)
{
lastFocusComponent = e.getComponent();
}
+ @Override
public void focusLost(FocusEvent e)
{
}
--
Gitblit v1.10.0