Uses of Class
edu.cs.ai.kreator.control.KreatorWorker

Packages that use KreatorWorker
edu.cs.ai.kreator.control   
edu.cs.ai.kreator.scripting   
edu.cs.ai.kreator.ui.cli   
edu.cs.ai.kreator.ui.gui.components   
edu.cs.ai.kreator.ui.gui.components.controller   
 

Uses of KreatorWorker in edu.cs.ai.kreator.control
 

Subclasses of KreatorWorker in edu.cs.ai.kreator.control
 class EventKreatorWorker
          An event driven worker.
 

Methods in edu.cs.ai.kreator.control that return KreatorWorker
 KreatorWorker<?> WorkerController.getMyWorker()
          Returns the worker, which belongs to the current thread, or null if the current thread does not run in a background worker.
 

Methods in edu.cs.ai.kreator.control with parameters of type KreatorWorker
 void WorkerController.abortWorker(KreatorWorker<?> w)
          Tells the given worker to abort.
 void WorkerController.addAndExecuteWorker(KreatorWorker<?> worker)
          Adds a KReatorWorker to the pool and executes it, as soon as there is a free thread.
 void WorkerController.cancelWorkerAbortion(KreatorWorker<?> w)
          After having told the worker to abort, one may use this function to revoke this plead.
 void WorkerController.pauseWorker(KreatorWorker<?> w)
          Tells the given worker to sleep until resumed.
protected  void WorkerController.registerWorker(KreatorWorker<?> worker)
          Connects the worker with it's thread.
 void WorkerController.resumeWorker(KreatorWorker<?> w)
          Resumes this worker.
 

Uses of KreatorWorker in edu.cs.ai.kreator.scripting
 

Subclasses of KreatorWorker in edu.cs.ai.kreator.scripting
 class KreatorScriptEngine.ScriptWorker
          The Class ScriptWorker.
 

Uses of KreatorWorker in edu.cs.ai.kreator.ui.cli
 

Methods in edu.cs.ai.kreator.ui.cli with parameters of type KreatorWorker
 void KreatorConsole.registerWorker(KreatorWorker<?> w)
          Registers the given worker as the current worker of this console.
 void KreatorConsole.unregisterWorker(KreatorWorker<?> w)
          Unregisters the given worker.
 

Uses of KreatorWorker in edu.cs.ai.kreator.ui.gui.components
 

Methods in edu.cs.ai.kreator.ui.gui.components with parameters of type KreatorWorker
 void ConsolePane.registerWorker(KreatorWorker<?> w)
          Register a worker with this console.
 void ConsolePane.unregisterWorker(KreatorWorker<?> w)
          Unregisters the currently running worker.
 

Uses of KreatorWorker in edu.cs.ai.kreator.ui.gui.components.controller
 

Subclasses of KreatorWorker in edu.cs.ai.kreator.ui.gui.components.controller
 class OutlineKnowledgebaseWorker
          Worker class: Calculates an outline tree for a given knowledge base file.
 class OutlineSamplecollectionWorker
          This is a worker class.
 class OutlineWorker
          Default outline worker class.