From 859bdd9b3b404bc61bb4f6cf02eda18f75a26c7f Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 04 Dec 2009 10:17:24 +0000
Subject: [PATCH] Make class Javadoc for tools consistent.
---
sdk/src/org/opends/sdk/tools/ModRate.java | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/sdk/src/org/opends/sdk/tools/ModRate.java b/sdk/src/org/opends/sdk/tools/ModRate.java
index 4d78b64..5fc365e 100644
--- a/sdk/src/org/opends/sdk/tools/ModRate.java
+++ b/sdk/src/org/opends/sdk/tools/ModRate.java
@@ -44,8 +44,10 @@
import com.sun.opends.sdk.util.Message;
+
/**
- * Modrate benchmarking tool.
+ * A load generation tool that can be used to load a Directory Server
+ * with Modify requests using one or more LDAP connections.
*/
public final class ModRate extends ConsoleApplication
{
@@ -54,7 +56,7 @@
/**
- * The main method for SearchRate tool.
+ * The main method for ModRate tool.
*
* @param args
* The command-line arguments provided to this program.
@@ -74,14 +76,14 @@
/**
* Parses the provided command-line arguments and uses that
- * information to run the ldapsearch tool.
+ * information to run the modrate tool.
*
* @param args
* The command-line arguments provided to this program.
* @return The error code.
*/
- public static int mainSearchRate(String[] args)
+ static int mainModRate(String[] args)
{
return mainModRate(args, System.in, System.out, System.err);
}
@@ -90,7 +92,7 @@
/**
* Parses the provided command-line arguments and uses that
- * information to run the ldapsearch tool.
+ * information to run the modrate tool.
*
* @param args
* The command-line arguments provided to this program.
@@ -106,7 +108,7 @@
* @return The error code.
*/
- public static int mainModRate(String[] args, InputStream inStream,
+ static int mainModRate(String[] args, InputStream inStream,
OutputStream outStream, OutputStream errStream)
{
--
Gitblit v1.10.0