Package org.apache.karaf.shell.console

Examples of org.apache.karaf.shell.console.SubShellAction


        this.subshell = subshell;
    }

    @Override
    public Action createNewAction() {
        SubShellAction action = (SubShellAction) super.createNewAction();
        action.setSubShell(subshell);
        return action;
    }
View Full Code Here


  private static AbstractCommand createShellCommand() {
    return new AbstractCommand()
    {
      @Override
      public Action createNewAction() {
        SubShellAction subShell = new SubShellAction();
        subShell.setSubShell(SCOPE);
        return subShell;
      }
    };
  }
View Full Code Here

        this.subshell = subshell;
    }

    @Override
    public Action createNewAction() {
        SubShellAction action = (SubShellAction) super.createNewAction();
        action.setSubShell(subshell);
        return action;
    }
View Full Code Here

TOP

Related Classes of org.apache.karaf.shell.console.SubShellAction

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.