Javadoc fixes.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1723 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2005-11-03 22:03:11 +00:00
parent fa06b0b11c
commit 6518fe1b43
@@ -30,7 +30,7 @@ public class KeyUtil
/** /**
* Convenient function to make a random key of the specified total * Convenient function to make a random key of the specified total
* length, containing length - 1 random digits, that is verifiable * length, containing length - 1 random digits, that is verifiable
* using {@link verifyLuhn}. * using {@link #verifyLuhn}.
*/ */
public static String makeVerifiableKey (Random rand, int length) public static String makeVerifiableKey (Random rand, int length)
{ {
@@ -69,7 +69,7 @@ public class KeyUtil
/** /**
* Takes a random string of digits and adds the appropriate check * Takes a random string of digits and adds the appropriate check
* digit in order to make the whole string verifyable using {@link * digit in order to make the whole string verifyable using {@link
* verifyLuhn}. * #verifyLuhn}.
*/ */
public static String makeLuhnVerifiable (String key) public static String makeLuhnVerifiable (String key)
{ {
@@ -82,8 +82,10 @@ public class KeyUtil
/** /**
* Return the luhn remainder for the given key. * Return the luhn remainder for the given key.
* *
* {@see http://www.beachnet.com/~hstiles/cardtype.html } * @see <a href="http://www.beachnet.com/~hstiles/cardtype.html">
* {@see http://www.google.com/search?q=luhn%20credit%20card } * Instructions for computing the Lunh remainder</a>
* @see <a href="http://www.google.com/search?q=luhn%20credit%20card">
* Find more information with Google</a>
*/ */
public static int getLuhnRemainder (String key) public static int getLuhnRemainder (String key)
{ {