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/guitools/controlpanel/ui/StatusGenericPanel.java | 21 +++++----------------
1 files changed, 5 insertions(+), 16 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/StatusGenericPanel.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/StatusGenericPanel.java
index 51c63d5..8c57c5a 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/StatusGenericPanel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/StatusGenericPanel.java
@@ -111,14 +111,10 @@
{
private static final long serialVersionUID = -9123358652232556732L;
- /**
- * The string to be used as combo separator.
- */
+ /** The string to be used as combo separator. */
public static final String COMBO_SEPARATOR = "----------";
- /**
- * The not applicable message.
- */
+ /** The not applicable message. */
protected static final LocalizableMessage NOT_APPLICABLE = INFO_NOT_APPLICABLE_LABEL.get();
private static final LocalizableMessage AUTHENTICATE = INFO_AUTHENTICATE_BUTTON_LABEL.get();
@@ -242,9 +238,7 @@
return true;
}
- /**
- * Constructor.
- */
+ /** Constructor. */
protected StatusGenericPanel()
{
super(new GridBagLayout());
@@ -371,9 +365,7 @@
p.add(errorPane, gbc);
}
- /**
- * Creates the error pane.
- */
+ /** Creates the error pane. */
protected void createErrorPane()
{
errorPane = Utilities.makeHtmlPane("", ColorAndFontConstants.progressFont);
@@ -532,9 +524,7 @@
comp.setFont(ColorAndFontConstants.defaultFont);
}
- /**
- * Packs the parent dialog.
- */
+ /** Packs the parent dialog. */
protected void packParentDialog()
{
Window dlg = Utilities.getParentDialog(this);
@@ -966,7 +956,6 @@
errorPane, title, ColorAndFontConstants.errorTitleFont, mb.toMessage(), ColorAndFontConstants.defaultFont);
SwingUtilities.invokeLater(new Runnable()
{
- /** {@inheritDoc} */
@Override
public void run()
{
--
Gitblit v1.10.0