Fixed Javadoc warnings.

This commit is contained in:
dchandler 2003-06-29 15:37:35 +00:00
parent b841a7f14b
commit 3f76c3692d
10 changed files with 65 additions and 70 deletions

View file

@ -82,7 +82,7 @@ public class DuffData {
}
/** Changes the text and font this DuffData represents.
* @param c a String of TibetanMachineWeb or TibetanMachine text
* @param s a String of TibetanMachineWeb or TibetanMachine text
* @param i a TibetanMachineWeb or TibetanMachine font number
*/
public void setData(String s, int i) {

View file

@ -332,7 +332,7 @@ public class TibetanKeyboard {
* parameter, assuming it is in fact a character
* in this keyboard; if not, returns null.
*
* @param the possible character
* @param s the possible character
*/
public String getWylieForChar(String s) {
if (!charMap.containsKey(s))
@ -391,7 +391,7 @@ public class TibetanKeyboard {
* parameter, assuming it is in fact a vowel
* in this keyboard; if not, returns null.
*
* @param the possible vowel
* @param s the possible vowel
*/
public String getWylieForVowel(String s) {
if (!vowelMap.containsKey(s))

View file

@ -1622,7 +1622,7 @@ public static String getAVowel() {
/**
* Returns true iff this glyph is a top (superscript) vowel.
* @param a DuffCode representing a TibetanMachineWeb glyph
* @param dc a DuffCode representing a TibetanMachineWeb glyph
* @return true if the glyph is a top-hanging (superscript) vowel (i,
* u, e, o, ai, or ao) and false if not */
public static boolean isTopVowel(DuffCode dc) {