summaryrefslogtreecommitdiff
path: root/sources/simulator
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/simulator
parentf458187663613d1c89a4c2eb91fd60e5e81b9fbd (diff)
cosmetic fixes for javadoc.
Diffstat (limited to 'sources/simulator')
-rw-r--r--sources/simulator/VSCreateTask.java2
-rw-r--r--sources/simulator/VSLogging.java2
-rw-r--r--sources/simulator/VSMain.java2
-rw-r--r--sources/simulator/VSMenuItemStates.java2
-rw-r--r--sources/simulator/VSSimulator.java4
-rw-r--r--sources/simulator/VSSimulatorCanvas.java4
-rw-r--r--sources/simulator/VSSimulatorFrame.java2
7 files changed, 9 insertions, 9 deletions
diff --git a/sources/simulator/VSCreateTask.java b/sources/simulator/VSCreateTask.java
index 96bb93e..d3d02d1 100644
--- a/sources/simulator/VSCreateTask.java
+++ b/sources/simulator/VSCreateTask.java
@@ -9,7 +9,7 @@ import events.*;
import events.internal.*;
/**
- * The Class VSCreateTask. An object of this class represents how new
+ * The class VSCreateTask, an object of this class represents how new
* VSTask objects are to be created using JComboBox selections of the
* GUI editor..
*
diff --git a/sources/simulator/VSLogging.java b/sources/simulator/VSLogging.java
index b7ce221..51ae836 100644
--- a/sources/simulator/VSLogging.java
+++ b/sources/simulator/VSLogging.java
@@ -11,7 +11,7 @@ import javax.swing.*;
import utils.*;
/**
- * The Class VSLogging. An object of this class is responsible for the logging
+ * The class VSLogging, an object of this class is responsible for the logging
* of text messages into the simulator's logging window.
*
* @author Paul C. Buetow
diff --git a/sources/simulator/VSMain.java b/sources/simulator/VSMain.java
index b8aa84a..de99021 100644
--- a/sources/simulator/VSMain.java
+++ b/sources/simulator/VSMain.java
@@ -12,7 +12,7 @@ import prefs.*;
import prefs.editors.*;
/**
- * The Class VSMain. This class contains the static main method. The simulator
+ * The class VSMain. This class contains the static main method. The simulator
* starts here!
*
* @author Paul C. Buetow
diff --git a/sources/simulator/VSMenuItemStates.java b/sources/simulator/VSMenuItemStates.java
index b751b29..7a32cb4 100644
--- a/sources/simulator/VSMenuItemStates.java
+++ b/sources/simulator/VSMenuItemStates.java
@@ -5,7 +5,7 @@
package simulator;
/**
- * The Class VSMenuItemStates. Used by the VSSimulation to update the
+ * The class VSMenuItemStates. Used by the VSSimulation to update the
* "simulation" bar of the VSSimulationFrame.
*
* @author Paul C. Buetow
diff --git a/sources/simulator/VSSimulator.java b/sources/simulator/VSSimulator.java
index be368fd..3eedfdc 100644
--- a/sources/simulator/VSSimulator.java
+++ b/sources/simulator/VSSimulator.java
@@ -19,7 +19,7 @@ import prefs.editors.*;
import utils.*;
/**
- * The Class VSSimulator. An object of this class represents a whole simulation.
+ * The class VSSimulator, an object of this class represents a whole simulation.
* It may be, that several parallel simulations exist. They are independent
* fron each other.
*
@@ -138,7 +138,7 @@ public class VSSimulator extends JPanel {
private static int simulationNum;
/**
- * The Class VSTaskManagerTableModel. An object of this class handles
+ * The class VSTaskManagerTableModel, an object of this class handles
* the task manager's JTable.
*/
private class VSTaskManagerTableModel extends AbstractTableModel
diff --git a/sources/simulator/VSSimulatorCanvas.java b/sources/simulator/VSSimulatorCanvas.java
index 924c08f..909ce3d 100644
--- a/sources/simulator/VSSimulatorCanvas.java
+++ b/sources/simulator/VSSimulatorCanvas.java
@@ -19,7 +19,7 @@ import prefs.*;
import prefs.editors.*;
/**
- * The Class VSSimulatorCanvas. An instance of this object represents the
+ * The class VSSimulatorCanvas. An instance of this object represents the
* graphical paint area of a simulation. It contains all graphic calculations.
* Also the simulation thread takes place in this class in a loop! This class
* is probably the most cryptic of the whole simulator source code. This is
@@ -202,7 +202,7 @@ public class VSSimulatorCanvas extends Canvas implements Runnable {
private long messageLineCounter;
/**
- * The Class VSMessageLine. An object of this class represents a message
+ * The class VSMessageLine, an object of this class represents a message
* line drawn into the painting area.
*
* @author Paul C. Buetow
diff --git a/sources/simulator/VSSimulatorFrame.java b/sources/simulator/VSSimulatorFrame.java
index bf68fbd..d867e0f 100644
--- a/sources/simulator/VSSimulatorFrame.java
+++ b/sources/simulator/VSSimulatorFrame.java
@@ -16,7 +16,7 @@ import prefs.editors.*;
import utils.*;
/**
- * The Class VSSimulatorFrame. An object of this class represents a window
+ * The class VSSimulatorFrame, an object of this class represents a window
* of the simulator. The window can have several tabs. Each tab contains
* an independent simulation.
*