Package org.jnode.test.shell

Source Code of org.jnode.test.shell.MyAliasCommand

/*
* $Id$
*
* Copyright (C) 2003-2014 JNode.org
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; If not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package org.jnode.test.shell;

import org.jnode.shell.AbstractCommand;
import org.jnode.shell.syntax.AliasArgument;
import org.jnode.shell.syntax.Argument;
import org.jnode.shell.syntax.ClassNameArgument;

/**
* Stripped down for testing ... new syntax
*/
public class MyAliasCommand extends AbstractCommand {

    private final AliasArgument ARG_ALIAS;
    private final ClassNameArgument ARG_CLASS;
    private final AliasArgument ARG_REMOVE;

    public MyAliasCommand() {
        super("list, set or remove JNode command aliases");
        ARG_ALIAS = new AliasArgument("alias", Argument.OPTIONAL, "the alias to be added");
        ARG_CLASS = new ClassNameArgument("classname", Argument.OPTIONAL, "the classname");
        ARG_REMOVE = new AliasArgument("remove", Argument.OPTIONAL, "the alias to be removed");
        registerArguments(ARG_ALIAS, ARG_CLASS, ARG_REMOVE);
    }

    public void execute() throws Exception {
    }
}
TOP

Related Classes of org.jnode.test.shell.MyAliasCommand

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.