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/GenericFrame.java | 28 ++++++----------------------
1 files changed, 6 insertions(+), 22 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/GenericFrame.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/GenericFrame.java
index a13388e..410b941 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/GenericFrame.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/GenericFrame.java
@@ -67,7 +67,6 @@
/**
* The generic frame of the Control Panel. It contains a StatusGenericPanel.
- *
*/
public class GenericFrame extends JFrame
{
@@ -76,18 +75,11 @@
ColorAndFontConstants.greyBackground;
private JButton okButton;
- /**
- * The close button.
- */
+ /** The close button. */
protected JButton closeButton;
private JButton cancelButton;
- //private JPanel contentPanel;
- /**
- * The panel contained in the frame.
- */
+ /** The panel contained in the frame. */
protected StatusGenericPanel panel;
- //private ProgressPanel progressPanel;
- //private boolean displayInputInNextVisible;
private Component lastComponentWithFocus;
/**
@@ -135,9 +127,7 @@
KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);
ActionListener actionListener = new ActionListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void actionPerformed(ActionEvent ev)
{
setVisible(false);
@@ -148,9 +138,7 @@
FocusListener focusListener = new FocusAdapter()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void focusGained(FocusEvent ev)
{
lastComponentWithFocus = ev.getComponent();
@@ -159,9 +147,7 @@
addFocusListener(focusListener, panel);
addWindowListener(new WindowAdapter() {
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void windowClosing(WindowEvent e) {
GenericFrame.this.panel.closeClicked();
}
@@ -204,9 +190,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void setVisible(boolean visible)
{
if (visible && lastComponentWithFocus == null)
--
Gitblit v1.10.0