Uses of Class
quicktime.app.time.TaskThread

Packages that use TaskThread
quicktime.app.time   
 

Uses of TaskThread in quicktime.app.time
 

Fields in quicktime.app.time declared as TaskThread
static TaskThread Taskable.tasker
          The "system" creates a default TaskThread for all taskable objects.
 

Methods in quicktime.app.time that return TaskThread
 TaskThread Tasking.getTasker()
          This should return the task thread that the Taskable object is currently being tasked by or null if not being tasked.
 TaskThread Tasking.getDefaultTasker()
          Returns the default TaskThread that is used when this object is tasked.
 TaskThread Taskable.getTasker()
          This should return the task thread that the Taskable object is currently being tasked by or null if not being tasked.
 

Methods in quicktime.app.time with parameters of type TaskThread
 void Tasking.addedToTasker(TaskThread t)
          This is called by a TaskThread when an object is added to a TaskThread.
 void Tasking.setDefaultTasker(TaskThread tasker)
          This will set the default TaskThread that will be used by this object when the startTasking method is called.
 void Taskable.addedToTasker(TaskThread t)
          This is called by a TaskThread when an object is added to a TaskThread.