Class Process

java.lang.Object
   |
   +----Process

public class Process
extends Object

Constructor Index

 o Process(String)

Method Index

 o getCpuUsage()
cpu usage howmany cycles has a process used since it's been running
 o getDevices()
 o getFiles()
 o getMemUsage()
this matches what ps.c had for determineing memory usage.
 o getPipes()
 o getSockets()
 o toString()
this get called by System.out.println(process) makes debuging eaiser.
 o update()
this is a method that will update a processes information

Constructors

 o Process
 public Process(String pid)

Methods

 o getSockets
 public Vector getSockets()
 o getFiles
 public Vector getFiles()
 o getPipes
 public Vector getPipes()
 o getDevices
 public Vector getDevices()
 o getCpuUsage
 public float getCpuUsage()
cpu usage howmany cycles has a process used since it's been running

 o getMemUsage
 public float getMemUsage()
this matches what ps.c had for determineing memory usage.

 o toString
 public String toString()
this get called by System.out.println(process) makes debuging eaiser.

Overrides:
toString in class Object
 o update
 public void update()
this is a method that will update a processes information