Exemple #1
0
 public O2Shell()
 {
     shellIO = new ShellIO();
     shellExecution = new ShellExecution(shellIO);
     shellIO.writeLine("Welcome to O2's Kernel shell.\n");
     shellIO.writeLine("This is an interactive command prompt into O2's world\n");
     shellIO.writeLine("O2Kernel Process Name: {0}\n\n",PublicDI.O2KernelProcessName);
 }
Exemple #2
0
 public O2Shell()
 {
     shellIO        = new ShellIO();
     shellExecution = new ShellExecution(shellIO);
     shellIO.writeLine("Welcome to O2's Kernel shell.\n");
     shellIO.writeLine("This is an interactive command prompt into O2's world\n");
     shellIO.writeLine("O2Kernel Process Name: {0}\n\n", PublicDI.O2KernelProcessName);
 }
Exemple #3
0
 public ShellExecution(ShellIO shellIO)
 {
     _shellIO = shellIO;
 }
 public ShellExecution(ShellIO shellIO)
 {
     _shellIO = shellIO;
 }