summaryrefslogtreecommitdiff
path: root/sources/utils
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/utils
parentf458187663613d1c89a4c2eb91fd60e5e81b9fbd (diff)
cosmetic fixes for javadoc.
Diffstat (limited to 'sources/utils')
-rw-r--r--sources/utils/VSAbout.java2
-rw-r--r--sources/utils/VSClassLoader.java2
-rw-r--r--sources/utils/VSFrame.java2
-rw-r--r--sources/utils/VSInfoArea.java2
-rw-r--r--sources/utils/VSPriorityQueue.java2
-rw-r--r--sources/utils/VSRandom.java2
-rw-r--r--sources/utils/VSTools.java2
-rw-r--r--sources/utils/VSTupel.java2
8 files changed, 8 insertions, 8 deletions
diff --git a/sources/utils/VSAbout.java b/sources/utils/VSAbout.java
index 7580b6c..a779e64 100644
--- a/sources/utils/VSAbout.java
+++ b/sources/utils/VSAbout.java
@@ -12,7 +12,7 @@ import prefs.*;
import utils.*;
/**
- * The Class VSAbout. This class is only for the about window which shows up
+ * The class VSAbout. This class is only for the about window which shows up
* if selected in the GUI.
*
* @author Paul C. Buetow
diff --git a/sources/utils/VSClassLoader.java b/sources/utils/VSClassLoader.java
index 8e7e860..9493bce 100644
--- a/sources/utils/VSClassLoader.java
+++ b/sources/utils/VSClassLoader.java
@@ -5,7 +5,7 @@
package utils;
/**
- * The Class VSClassLoader. This class is used in order to create new objects
+ * The class VSClassLoader. This class is used in order to create new objects
* by its classnames.
*
* @author Paul C. Buetow
diff --git a/sources/utils/VSFrame.java b/sources/utils/VSFrame.java
index 06a6958..2735243 100644
--- a/sources/utils/VSFrame.java
+++ b/sources/utils/VSFrame.java
@@ -9,7 +9,7 @@ import java.awt.event.*;
import javax.swing.JFrame;
/**
- * The Class VSFrame. All frames of the simulator extend this VSFrame class.
+ * The class VSFrame. All frames of the simulator extend this VSFrame class.
* This class makes sure that all 'subwindows' get closed if its parent gets
* closed. And it also makes sure to open new windows relative to its parent.
*
diff --git a/sources/utils/VSInfoArea.java b/sources/utils/VSInfoArea.java
index 1652f04..a34f6c2 100644
--- a/sources/utils/VSInfoArea.java
+++ b/sources/utils/VSInfoArea.java
@@ -9,7 +9,7 @@ import javax.swing.*;
import javax.swing.border.*;
/**
- * The Class VSInfoArea. An object of this class is used for some information
+ * The class VSInfoArea, an object of this class is used for some information
*areas. E.g. in the VSAbout class.
*
* @author Paul C. Buetow
diff --git a/sources/utils/VSPriorityQueue.java b/sources/utils/VSPriorityQueue.java
index b320c1d..d7c7261 100644
--- a/sources/utils/VSPriorityQueue.java
+++ b/sources/utils/VSPriorityQueue.java
@@ -7,7 +7,7 @@ package utils;
import java.util.PriorityQueue;
/**
- * The Class VSPriorityQueue. This class is the same like the standard
+ * The class VSPriorityQueue. This class is the same like the standard
* VSPriorityQueue of the Java API. It only overrides the get(int) method.
*
* @author Paul C. Buetow
diff --git a/sources/utils/VSRandom.java b/sources/utils/VSRandom.java
index 5a6391a..79dbee8 100644
--- a/sources/utils/VSRandom.java
+++ b/sources/utils/VSRandom.java
@@ -7,7 +7,7 @@ package utils;
import java.util.Random;
/**
- * The Class VSRandom. Some customization of the standard Random class of Java.
+ * The class VSRandom. Some customization of the standard Random class of Java.
*
* @author Paul C. Buetow
*/
diff --git a/sources/utils/VSTools.java b/sources/utils/VSTools.java
index 7f2f00e..ac39bd0 100644
--- a/sources/utils/VSTools.java
+++ b/sources/utils/VSTools.java
@@ -7,7 +7,7 @@ package utils;
import java.util.Vector;
/**
- * The Class VSTools. This class contains only static methods. Those methods
+ * The class VSTools. This class contains only static methods. Those methods
* are for general usage and don't fit into other classes.
*
* @author Paul C. Buetow
diff --git a/sources/utils/VSTupel.java b/sources/utils/VSTupel.java
index cb903f4..dee866e 100644
--- a/sources/utils/VSTupel.java
+++ b/sources/utils/VSTupel.java
@@ -5,7 +5,7 @@
package utils;
/**
- * The Class VSTupel. An object of this class represents a 3-Tupel of objects.
+ * The class VSTupel, an object of this class represents a 3-Tupel of objects.
* Each object can have its own type.
*
* @author Paul C. Buetow