Method Summary |
|
public void | createThread() The createThread method makes a new thread, the old thread is no longer
used by this mutable object. |
public String | getName() The getName method returns the assigned name for the thread. |
public boolean | isAlive() |
abstract public void | run() This abstract method for run must be implemented by all extending classes. |
public void | setName(String aThreadName) The setName method passes the string for assignment to the thread
as name. |
public void | setPriority(int aPriority) The setPriority(int) method passes the parameter for priority to the
mutable object This priority is assigned to any thread owned by this
object. |
public void | start() The implemented start method starts the thread. |
public void | start(int aPriority) This is the implemented start method which first sets the passed parameter
for priority and then invokes the start method for the thread. |
public void | stop() This method is provided for test purposes only
the method is deprecated. |