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/ServerSettingsPanel.java | 26 ++++++++++++--------------
1 files changed, 12 insertions(+), 14 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/ServerSettingsPanel.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/ServerSettingsPanel.java
index 03a360e..c16efeb 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/ServerSettingsPanel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/ServerSettingsPanel.java
@@ -12,7 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2006-2010 Sun Microsystems, Inc.
- * Portions Copyright 2014-2015 ForgeRock AS.
+ * Portions Copyright 2014-2016 ForgeRock AS.
*/
package org.opends.quicksetup.installer.ui;
@@ -50,7 +50,6 @@
/**
* This is the panel that contains the Server Settings: the port, the Directory
* Manager DN, etc.
- *
*/
public class ServerSettingsPanel extends QuickSetupStepPanel
{
@@ -92,7 +91,7 @@
addFocusListeners();
}
- /** {@inheritDoc} */
+ @Override
public Object getFieldValue(FieldName fieldName)
{
Object value = null;
@@ -133,7 +132,7 @@
return value;
}
- /** {@inheritDoc} */
+ @Override
public void displayFieldInvalid(FieldName fieldName, boolean invalid)
{
JLabel label = getLabel(fieldName);
@@ -151,7 +150,7 @@
}
}
- /** {@inheritDoc} */
+ @Override
protected Component createInputPanel()
{
JPanel panel = new JPanel(new GridBagLayout());
@@ -274,19 +273,19 @@
return panel;
}
- /** {@inheritDoc} */
+ @Override
protected LocalizableMessage getInstructions()
{
return INFO_SERVER_SETTINGS_PANEL_INSTRUCTIONS.get();
}
- /** {@inheritDoc} */
+ @Override
protected LocalizableMessage getTitle()
{
return INFO_SERVER_SETTINGS_PANEL_TITLE.get();
}
- /** {@inheritDoc} */
+ @Override
public void endDisplay()
{
if (lastFocusComponent != null)
@@ -363,9 +362,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<>();
@@ -507,6 +504,7 @@
secureAccessButton.addActionListener(new ActionListener()
{
+ @Override
public void actionPerformed(ActionEvent ev)
{
getConfigureSecureAccessDialog().display(securityOptions);
@@ -544,18 +542,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