Package org.jboss.fresh.shell.commands

Examples of org.jboss.fresh.shell.commands.CDExe


public class DefaultExecutableRegistry implements ExecutableRegistry
{
   public Executable getExecutable(String command)
   {
      if ("cd".equals(command)) {
         return new CDExe();
      } else if ("set".equals(command)) {
         return new SetCommand();
      } else if ("run".equals(command)) {
         return new RunExe();
      } else if ("ls".equals(command)) {
View Full Code Here

TOP

Related Classes of org.jboss.fresh.shell.commands.CDExe

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.