From eaa23f4b7af97c108ecffa40c86c32e723a90594 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Wed, 29 Aug 2007 14:40:34 +0000
Subject: [PATCH] Fix issue 1831: dsconfig interactive mode.
---
opends/src/server/org/opends/server/util/cli/package-info.java | 29 +++++++++++++++--------------
1 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/dsconfig/HelpCallback.java b/opends/src/server/org/opends/server/util/cli/package-info.java
similarity index 60%
copy from opends/src/server/org/opends/server/tools/dsconfig/HelpCallback.java
copy to opends/src/server/org/opends/server/util/cli/package-info.java
index 8412933..0d8f7ac 100644
--- a/opends/src/server/org/opends/server/tools/dsconfig/HelpCallback.java
+++ b/opends/src/server/org/opends/server/util/cli/package-info.java
@@ -22,22 +22,23 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2007 Sun Microsystems, Inc.
+ * Portions Copyright 2006-2007 Sun Microsystems, Inc.
*/
-package org.opends.server.tools.dsconfig;
-
-
/**
- * An interface for displaying help interactively.
+ * Provides a high-level framework for implementing command-line
+ * tools.
+ * <p>
+ * The {@link ConsoleApplication} interface can be used as a basis for
+ * console based applications. It includes common utility methods for
+ * interacting with the console.
+ * <p>
+ * The {@link MenuBuilder} and associated classes and interfaces can
+ * be used to implement text based menu driven applications.
*/
-interface HelpCallback {
+@org.opends.server.types.PublicAPI(
+ stability = org.opends.server.types.StabilityLevel.PRIVATE)
+package org.opends.server.util.cli;
- /**
- * Displays help to the provided application console.
- *
- * @param app
- * The console application.
- */
- void display(ConsoleApplication app);
-}
+
+
--
Gitblit v1.10.0