Package org.jnode.shell.syntax

Examples of org.jnode.shell.syntax.ThreadNameArgument


    private final FlagArgument argDump;
    private final FlagArgument argVerbose;

    public ThreadCommand() {
        super(help_super);
        argName = new ThreadNameArgument("threadName", Argument.OPTIONAL, help_name);
        argDump = new FlagArgument("groupDump", Argument.OPTIONAL, help_group);
        argVerbose = new FlagArgument("verbose", Argument.OPTIONAL, help_verbose);
        registerArguments(argName, argVerbose, argDump);
    }
View Full Code Here

TOP

Related Classes of org.jnode.shell.syntax.ThreadNameArgument

Copyright © 2018 www.massapicom. 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.