summaryrefslogtreecommitdiff
path: root/sources/core
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-30 01:29:54 +0000
committerPaul Buetow <paul@buetow.org>2008-05-30 01:29:54 +0000
commit44b2141fd4d5f215827f48f0774c5cbdf6df5a7d (patch)
tree00839ddd15a9676ed9d51956da7049c23dc3edbe /sources/core
parentf458187663613d1c89a4c2eb91fd60e5e81b9fbd (diff)
cosmetic fixes for javadoc.
Diffstat (limited to 'sources/core')
-rw-r--r--sources/core/VSProcess.java2
-rw-r--r--sources/core/VSTask.java2
-rw-r--r--sources/core/VSTaskManager.java2
-rw-r--r--sources/core/time/VSLamportTime.java2
-rw-r--r--sources/core/time/VSVectorTime.java2
5 files changed, 5 insertions, 5 deletions
diff --git a/sources/core/VSProcess.java b/sources/core/VSProcess.java
index 73ba679..b6135d4 100644
--- a/sources/core/VSProcess.java
+++ b/sources/core/VSProcess.java
@@ -16,7 +16,7 @@ import simulator.*;
import utils.*;
/**
- * The Class VSProcess. A object of this class represents a process of a
+ * The class VSProcess, an object of this class represents a process of a
* simulation.
*
* @author Paul C. Buetow
diff --git a/sources/core/VSTask.java b/sources/core/VSTask.java
index b609704..baf030a 100644
--- a/sources/core/VSTask.java
+++ b/sources/core/VSTask.java
@@ -11,7 +11,7 @@ import prefs.VSPrefs;
import protocols.VSAbstractProtocol;
/**
- * The Class VSTask. An object of this class represents a task to do or done.
+ * The class VSTask, an object of this class represents a task to do or done.
* All tasks are managed by the task manager. There are local and global timed
* tasks. Local timed tasks are being fullfilled if the process' local time is
* reached. Global timed tasks are being fullfilled if the simulation's time is
diff --git a/sources/core/VSTaskManager.java b/sources/core/VSTaskManager.java
index 189665a..5878a85 100644
--- a/sources/core/VSTaskManager.java
+++ b/sources/core/VSTaskManager.java
@@ -10,7 +10,7 @@ import prefs.*;
import utils.*;
/**
- * The Class VSTaskManager. The task manager is responsible that all tasks
+ * The class VSTaskManager. The task manager is responsible that all tasks
* will get fullfilled in the correct order. Please also read the javadoc
* of the VSTask class. It describes the difference between local and global
* timed tasks.
diff --git a/sources/core/time/VSLamportTime.java b/sources/core/time/VSLamportTime.java
index 25ad8af..af72a74 100644
--- a/sources/core/time/VSLamportTime.java
+++ b/sources/core/time/VSLamportTime.java
@@ -5,7 +5,7 @@
package core.time;
/**
- * The Class VSLamportTime. This class defined how the lamport
+ * The class VSLamportTime. This class defined how the lamport
* timestamps are represented.
*
* @author Paul C. Buetow
diff --git a/sources/core/time/VSVectorTime.java b/sources/core/time/VSVectorTime.java
index 5a52f96..d999a48 100644
--- a/sources/core/time/VSVectorTime.java
+++ b/sources/core/time/VSVectorTime.java
@@ -7,7 +7,7 @@ package core.time;
import java.util.ArrayList;
/**
- * The Class VSVectorTime. This class defined how the vector
+ * The class VSVectorTime. This class defined how the vector
* timestamps are represented.
*
* @author Paul C. Buetow