All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mycore.frontend.cli.MCRExternalCommandInterface Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * 
 * $Revision$ $Date$
 * 
 * This file is part of *** M y C o R e *** See http://www.mycore.de/ for
 * details.
 * 
 * This program is free software; you can use it, redistribute it and / or
 * modify it under the terms of the GNU General Public License (GPL) as
 * published by the Free Software Foundation; either version 2 of the License or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * this program, in a file called gpl.txt or license.txt. If not, write to the
 * Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307 USA
 */

package org.mycore.frontend.cli;

import java.util.ArrayList;

/**
 * This interface is designed to incude external application commands.
 * 
 * @author Jens Kupferschmidt
 * @version $Revision$ $Date: 2009-07-30 15:41:24 +0200 (Thu, 30 Jul
 *          2009) $
 */
public interface MCRExternalCommandInterface {
    /**
     * The method return the list of possible commands of this class. Each
     * command has TWO Strings, a String of the user command syntax and a String
     * of the called method.
     * 
     * @return a command pair ArrayList
     */
    ArrayList getPossibleCommands();

    /**
     * Returns the display name of the external commands. If the display name
     * has not been set the simple class name is returned
     * 
     * @return the display name of the external commands
     */
    String getDisplayName();

    /**
     * Sets the display name.
     */
    void setDisplayName(String s);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy