org/sonews/daemon/command/HelpfulCommand.java
author cli
Tue Apr 27 21:51:12 2010 +0200 (2010-04-27)
changeset 26 407c428adb5b
permissions -rw-r--r--
Introduce more advanced help system (#565).
cli@26
     1
/*
cli@26
     2
 *   SONEWS News Server
cli@26
     3
 *   see AUTHORS for the list of contributors
cli@26
     4
 *
cli@26
     5
 *   This program is free software: you can redistribute it and/or modify
cli@26
     6
 *   it under the terms of the GNU General Public License as published by
cli@26
     7
 *   the Free Software Foundation, either version 3 of the License, or
cli@26
     8
 *   (at your option) any later version.
cli@26
     9
 *
cli@26
    10
 *   This program is distributed in the hope that it will be useful,
cli@26
    11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
cli@26
    12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
cli@26
    13
 *   GNU General Public License for more details.
cli@26
    14
 *
cli@26
    15
 *   You should have received a copy of the GNU General Public License
cli@26
    16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
cli@26
    17
 */
cli@26
    18
cli@26
    19
package org.sonews.daemon.command;
cli@26
    20
cli@26
    21
/**
cli@26
    22
 *
cli@26
    23
 * @since sonews/1.1
cli@26
    24
 * @author Christian Lins
cli@26
    25
 */
cli@26
    26
public interface HelpfulCommand extends Command
cli@26
    27
{
cli@26
    28
cli@26
    29
  /**
cli@26
    30
   * @return A short description of this command, that is
cli@26
    31
   * used within the output of the HELP command.
cli@26
    32
   */
cli@26
    33
  String getHelpString();
cli@26
    34
cli@26
    35
}