mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
29.40.2007 4ffd9fe47a44245d8a9f579e6e22bea655f97bbd
opendj-sdk/opends/src/server/org/opends/server/util/cli/package-info.java
copy from opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/HelpCallback.java copy to opendj-sdk/opends/src/server/org/opends/server/util/cli/package-info.java
File was copied from opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/HelpCallback.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);
}