Package org.jnode.shell.syntax

Examples of org.jnode.shell.syntax.PortNumberArgument


    private CopyThread fromThread;

    public TcpInoutCommand() {
        super(help_super);
        argHost      = new HostNameArgument("host", Argument.OPTIONAL, help_host);
        argPort      = new PortNumberArgument("port", Argument.OPTIONAL, help_port);
        argLocalPort = new PortNumberArgument("localPort", Argument.OPTIONAL, help_lport);
        registerArguments(argHost, argLocalPort, argPort);
    }
View Full Code Here

TOP

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

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.