summaryrefslogtreecommitdiff
path: root/sources/core/VSProcess.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-31 04:07:52 +0000
committerPaul Buetow <paul@buetow.org>2008-05-31 04:07:52 +0000
commiteea3451c81af9a880caf63cc491cc39ef65e2de9 (patch)
tree9c936c1ee11bc4b46a089e7315b1da504ac798fc /sources/core/VSProcess.java
parent076f0be7a93410b7ccde89a375c4f5c98e452307 (diff)
some comment
Diffstat (limited to 'sources/core/VSProcess.java')
-rw-r--r--sources/core/VSProcess.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/sources/core/VSProcess.java b/sources/core/VSProcess.java
index c5a90d9..e0392fc 100644
--- a/sources/core/VSProcess.java
+++ b/sources/core/VSProcess.java
@@ -87,7 +87,10 @@ public class VSProcess extends VSPrefs {
/** The vector time. */
private VSVectorTime vectorTime;
- /** The tasks of the process. */
+ /** The tasks of the process. DO ONLY MANIPULATE THIS OBJECT WITHIN THE
+ * VSTaskManager CLASS! OTHERWISE THE SYNCHRONIZATION IS WRONG! Use the
+ * VSProcess.getTasks() method to get a reference to this object within the
+ * VSTaskManager! */
private VSPriorityQueue<VSTask> tasks;
/** The process has crashed. But may be working again. */
@@ -959,7 +962,7 @@ public class VSProcess extends VSPrefs {
/**
* Sets the tasks of the process.
*
- * @tasks The tasks
+ * @param tasks The tasks
*/
public void setTasks(VSPriorityQueue<VSTask> tasks) {
this.tasks = tasks;