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/ExportLDIFPanel.java | 78 ++++++++++-----------------------------
1 files changed, 20 insertions(+), 58 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ExportLDIFPanel.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ExportLDIFPanel.java
index 53acfac..446a6c8 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ExportLDIFPanel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/ExportLDIFPanel.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2008-2009 Sun Microsystems, Inc.
- * Portions Copyright 2014 ForgeRock AS
+ * Portions Copyright 2014-2015 ForgeRock AS
*/
package org.opends.guitools.controlpanel.ui;
@@ -103,25 +103,19 @@
createLayout();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public LocalizableMessage getTitle()
{
return INFO_CTRL_PANEL_EXPORT_LDIF_TITLE.get();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public Component getPreferredFocusComponent()
{
return file;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void toBeDisplayed(boolean visible)
{
if (visible)
@@ -175,25 +169,19 @@
file = Utilities.createTextField();
documentListener = new DocumentListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void changedUpdate(DocumentEvent ev)
{
String text = file.getText().trim();
setEnabledOK((text != null) && (text.length() > 0) &&
!errorPane.isVisible());
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void removeUpdate(DocumentEvent ev)
{
changedUpdate(ev);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void insertUpdate(DocumentEvent ev)
{
changedUpdate(ev);
@@ -272,9 +260,7 @@
encryptData.addChangeListener(new ChangeListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void stateChanged(ChangeEvent ev)
{
generateSignedHash.setEnabled(encryptData.isSelected());
@@ -305,9 +291,7 @@
wrapText.addChangeListener(new ChangeListener()
{
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void stateChanged(ChangeEvent ev)
{
wrapColumn.setEnabled(wrapText.isSelected());
@@ -333,9 +317,7 @@
addBottomGlue(gbc);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void configurationChanged(ConfigurationChangeEvent ev)
{
ServerDescriptor desc = ev.getNewDescriptor();
@@ -356,17 +338,13 @@
});
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
protected void checkOKButtonEnable()
{
documentListener.changedUpdate(null);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void okClicked()
{
setPrimaryValid(lBackend);
@@ -455,9 +433,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void cancelClicked()
{
setPrimaryValid(lBackend);
@@ -492,26 +468,20 @@
fileName = file.getText();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public Type getType()
{
return Type.EXPORT_LDIF;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public LocalizableMessage getTaskDescription()
{
return INFO_CTRL_PANEL_EXPORT_TASK_DESCRIPTION.get(
backendSet.iterator().next(), fileName);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public boolean canLaunch(Task taskToBeLaunched,
Collection<LocalizableMessage> incompatibilityReasons)
{
@@ -533,9 +503,7 @@
return canLaunch;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void runTask()
{
state = State.RUNNING;
@@ -572,17 +540,13 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public Set<String> getBackends()
{
return backendSet;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
protected ArrayList<String> getCommandLineArguments()
{
ArrayList<String> args = new ArrayList<String>();
@@ -623,9 +587,7 @@
return args;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
protected String getCommandLinePath()
{
return getCommandLinePath("export-ldif");
--
Gitblit v1.10.0