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/SecurityOptionsDialog.java | 24 ++++++++----------------
1 files changed, 8 insertions(+), 16 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/SecurityOptionsDialog.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/SecurityOptionsDialog.java
index 547da87..8b233ae 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/SecurityOptionsDialog.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ui/SecurityOptionsDialog.java
@@ -12,10 +12,8 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2008-2010 Sun Microsystems, Inc.
- * Portions Copyright 2013-2015 ForgeRock AS.
-
+ * Portions Copyright 2013-2016 ForgeRock AS.
*/
-
package org.opends.quicksetup.installer.ui;
import java.awt.Component;
@@ -340,6 +338,7 @@
ActionListener l = new ActionListener()
{
+ @Override
public void actionPerformed(ActionEvent ev)
{
updateEnablingState();
@@ -619,6 +618,7 @@
buttonsPanel.add(okButton, gbc);
okButton.addActionListener(new ActionListener()
{
+ @Override
public void actionPerformed(ActionEvent ev)
{
okClicked();
@@ -633,6 +633,7 @@
buttonsPanel.add(cancelButton, gbc);
cancelButton.addActionListener(new ActionListener()
{
+ @Override
public void actionPerformed(ActionEvent ev)
{
cancelClicked();
@@ -642,20 +643,14 @@
return buttonsPanel;
}
- /**
- * Method called when user clicks on cancel.
- *
- */
+ /** Method called when user clicks on cancel. */
private void cancelClicked()
{
isCanceled = true;
dispose();
}
- /**
- * Method called when user clicks on OK.
- *
- */
+ /** Method called when user clicks on OK. */
private void okClicked()
{
BackgroundTask<ArrayList<LocalizableMessage>> worker =
@@ -752,11 +747,7 @@
toFront();
}
- /**
- * Updates the widgets on the dialog with the contents of the securityOptions
- * object.
- *
- */
+ /** Updates the widgets on the dialog with the contents of the securityOptions object. */
private void updateContents()
{
cbEnableSSL.setSelected(securityOptions.getEnableSSL());
@@ -1091,6 +1082,7 @@
{
SwingUtilities.invokeLater(new Runnable()
{
+ @Override
public void run()
{
UIFactory.setTextStyle(comp,
--
Gitblit v1.10.0