Improving javadoc a little to explain what the point of this class is/was

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@699767 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2008-09-28 03:31:24 +00:00
parent a78f1c2b45
commit 17f1d2951f
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,10 @@ import java.util.Random;
* <p><code>JVMRandom</code> is a wrapper that supports all possible
* Random methods via the {@link java.lang.Math#random()} method
* and its system-wide {@link Random} object.</p>
*
* It does this to allow for a Random class in which the seed is
* shared between all members of the class - a better name would
* have been SharedSeedRandom.
*
* @since 2.0
* @version $Id$