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/IndexPanel.java | 88 +++++++++++---------------------------------
1 files changed, 22 insertions(+), 66 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/IndexPanel.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/IndexPanel.java
index 55a2931..067894b 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/IndexPanel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/IndexPanel.java
@@ -163,9 +163,7 @@
buttonPanel.add(deleteIndex, gbc);
deleteIndex.addActionListener(new ActionListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void actionPerformed(ActionEvent ev)
{
deleteIndex();
@@ -181,9 +179,7 @@
buttonPanel.add(saveChanges, gbc);
saveChanges.addActionListener(new ActionListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void actionPerformed(ActionEvent ev)
{
saveIndex(false);
@@ -192,25 +188,19 @@
entryLimit.getDocument().addDocumentListener(new DocumentListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void insertUpdate(DocumentEvent ev)
{
checkSaveButton();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void changedUpdate(DocumentEvent ev)
{
checkSaveButton();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void removeUpdate(DocumentEvent ev)
{
checkSaveButton();
@@ -219,9 +209,7 @@
ActionListener listener = new ActionListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void actionPerformed(ActionEvent ev)
{
checkSaveButton();
@@ -233,25 +221,19 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public LocalizableMessage getTitle()
{
return INFO_CTRL_PANEL_INDEX_PANEL_TITLE.get();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public Component getPreferredFocusComponent()
{
return entryLimit;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void configurationChanged(ConfigurationChangeEvent ev)
{
final ServerDescriptor desc = ev.getNewDescriptor();
@@ -261,9 +243,7 @@
INFO_CTRL_PANEL_CANNOT_CONNECT_TO_REMOTE_DETAILS.get(desc.getHostname()));
SwingUtilities.invokeLater(new Runnable()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void run()
{
checkSaveButton();
@@ -272,9 +252,7 @@
});
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void okClicked()
{
}
@@ -557,34 +535,26 @@
indexToModify = index;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public Type getType()
{
return Type.MODIFY_INDEX;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public Set<String> getBackends()
{
return backendSet;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public LocalizableMessage getTaskDescription()
{
return INFO_CTRL_PANEL_MODIFY_INDEX_TASK_DESCRIPTION.get(attributeName,
backendName);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public boolean canLaunch(Task taskToBeLaunched,
Collection<LocalizableMessage> incompatibilityReasons)
{
@@ -633,9 +603,7 @@
{
SwingUtilities.invokeLater(new Runnable()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void run()
{
StringBuilder sb = new StringBuilder();
@@ -652,9 +620,7 @@
}
SwingUtilities.invokeLater(new Runnable()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void run()
{
getProgressDialog().appendProgressHtml(
@@ -675,9 +641,7 @@
}
SwingUtilities.invokeLater(new Runnable()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void run()
{
getProgressDialog().appendProgressHtml(
@@ -792,17 +756,13 @@
index.commit();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
protected String getCommandLinePath()
{
return null;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
protected ArrayList<String> getCommandLineArguments()
{
return new ArrayList<String>();
@@ -826,9 +786,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void runTask()
{
state = State.RUNNING;
@@ -852,9 +810,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void postOperation()
{
if ((lastException == null) && (state == State.FINISHED_SUCCESSFULLY))
--
Gitblit v1.10.0