From 6638c2755466ca601450700d5a39f390f23d4781 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 23 Mar 2015 14:44:05 +0000
Subject: [PATCH] AutoRefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ProgressDialog.java |   62 ++++++++-----------------------
 1 files changed, 16 insertions(+), 46 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ProgressDialog.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ProgressDialog.java
index 9675c4d..367c03a 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ProgressDialog.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ProgressDialog.java
@@ -110,9 +110,7 @@
       {
         SwingUtilities.invokeLater(new Runnable()
         {
-          /**
-           * {@inheritDoc}
-           */
+          /** {@inheritDoc} */
           public void run()
           {
             progressPanel.appendErrorLine(msg);
@@ -124,9 +122,7 @@
     {
       public void newLine(final String msg)
       {
-        /**
-         * {@inheritDoc}
-         */
+        /** {@inheritDoc} */
         SwingUtilities.invokeLater(new Runnable()
         {
           public void run()
@@ -175,9 +171,7 @@
     progressPanel.setSummary(text);
   }
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   public void setEnabledClose(boolean enable)
   {
     progressPanel.closeButton.setEnabled(enable);
@@ -235,33 +229,25 @@
       createLayout();
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public LocalizableMessage getTitle()
     {
       return null;
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public boolean requiresScroll()
     {
       return false;
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public boolean requiresBorder()
     {
       return false;
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public boolean isDisposeOnClose()
     {
       return true;
@@ -413,9 +399,7 @@
       updateVisibility(lastShowDetails);
       details.addActionListener(new ActionListener()
       {
-        /**
-         * {@inheritDoc}
-         */
+        /** {@inheritDoc} */
         public void actionPerformed(ActionEvent ev)
         {
           lastShowDetails = details.isSelected();
@@ -423,7 +407,7 @@
         }
       });
 
-//    The button panel
+      // The button panel
       gbc.gridy ++;
       gbc.weighty = 0.0;
       gbc.insets = new Insets(0, 0, 0, 0);
@@ -445,9 +429,7 @@
       closeWhenOver.setOpaque(false);
       closeWhenOver.addActionListener(new ActionListener()
       {
-        /**
-         * {@inheritDoc}
-         */
+        /** {@inheritDoc} */
         public void actionPerformed(ActionEvent ev)
         {
           closeWhenOverClicked();
@@ -474,9 +456,7 @@
       buttonsPanel.add(closeButton, gbc);
       closeButton.addActionListener(new ActionListener()
       {
-        /**
-         * {@inheritDoc}
-         */
+        /** {@inheritDoc} */
         public void actionPerformed(ActionEvent ev)
         {
           closeClicked();
@@ -538,32 +518,24 @@
       }
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public GenericDialog.ButtonType getButtonType()
     {
       return GenericDialog.ButtonType.NO_BUTTON;
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public void configurationChanged(ConfigurationChangeEvent ev)
     {
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public Component getPreferredFocusComponent()
     {
       return details;
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public void okClicked()
     {
       Utilities.getParentDialog(this).setVisible(false);
@@ -591,9 +563,7 @@
       {
         Thread t = new Thread(new Runnable()
         {
-          /**
-           * {@inheritDoc}
-           */
+          /** {@inheritDoc} */
           public void run()
           {
             try

--
Gitblit v1.10.0