Uses of Class
kernel.AbstractProcess

Packages that use AbstractProcess
commands   
kernel   
 

Uses of AbstractProcess in commands
 

Subclasses of AbstractProcess in commands
 class cat
          Concatenates files (defined by the arguments) to the standard output, whereas the argument "-" represents the standard input.
 class cd
          implentation of the CD command
 class date
          Prints the current date.
 class echo
          Prints given input.
 class exit
          Terminates the shell in which it was run.
 class grep
          Searches the files given by the input arguments for a specific pattern.
 class kill
          Terminates one or more processes according to the given PIDs.
 class login
          Implementation of the LOGIN command.
 class ls
           
 class man
          Prints help for specified command.
 class ps
          Prints all running processes.
 class pwd
          Prints the current directory.
 class shell
          Starts a new shell.
 class shutdown
          Terminates the system by terminating the root process.
 

Uses of AbstractProcess in kernel
 

Methods in kernel that return AbstractProcess
 AbstractProcess AbstractProcess.getFirstChild()
           
 AbstractProcess AbstractProcess.getNext()
           
 AbstractProcess AbstractProcess.getParent()
           
 AbstractProcess AbstractProcess.getParentShell()
           
 AbstractProcess AbstractProcess.getPrevious()
           
 AbstractProcess Kernel.getProcess(int id)
           
 

Methods in kernel that return types with arguments of type AbstractProcess
 java.util.List<AbstractProcess> Kernel.getProcesses()
           
 

Methods in kernel with parameters of type AbstractProcess
 void AbstractProcess.init(Command command, AbstractProcess parent, java.io.InputStream in, java.io.OutputStream out, java.io.OutputStream err, Kernel services)
          Construct process
 void AbstractProcess.setFirstChild(AbstractProcess process)
          set child process
 void AbstractProcess.setNext(AbstractProcess next)
           
 void AbstractProcess.setPrevious(AbstractProcess previous)