Fixed Javadocs.

This commit is contained in:
dchandler 2003-09-10 01:19:05 +00:00
parent cc853be387
commit 16817d0b8e
9 changed files with 24 additions and 22 deletions

View file

@ -66,7 +66,7 @@ public class ACIPString {
public static final int LS = 9;
/** For [DR] -- picture (without caption) on page */
public static final int DR = 10;
/** For [DD], [DDD], [DD1], [DD2], etc. -- picture with caption on page */
/** For [DD], [DDD], [DD1], [DD2], et cetera -- picture with caption on page */
public static final int DD = 11;
/** For [?] */
public static final int QUESTION = 12;
@ -115,7 +115,7 @@ public class ACIPString {
private ACIPString() { }
/** Creates a new ACIPString with source text <i>text</i> and type
* <i>type</i> being a characterization like {@link DD}. */
* <i>type</i> being a characterization like {@link #DD}. */
public ACIPString(String text, int type) {
setType(type);
setText(text);

View file

@ -29,7 +29,7 @@ import junit.framework.TestCase;
/** Tests this package, especially {@link #TPairListFactory} and
* {@link #TPairList}.
* {@link TPairList}.
*
* @author David Chandler */
public class PackageTest extends TestCase {
@ -7262,6 +7262,7 @@ tstHelper("ZUR");
}
public void testACIPConversion() {
uhelp("KA \nKHA\n\nGA", "\u0f40\u0f0b\u0f41\u0f0b\n\n\u0f42");
uhelp("KA%\nKHA", "\u0f40\u0f35\u0f0b\u0f41");
uhelp("KA%", "\u0f40\u0f35");
uhelp("KAo", "\u0f40[#ERROR CONVERTING ACIP DOCUMENT: This converter cannot yet convert o because the converter's author is unclear what the result should be.]");

View file

@ -22,7 +22,7 @@ import java.util.ListIterator;
import java.util.NoSuchElementException;
import java.util.ArrayList;
/** An object that can iterate over an {@link #TParseTree}.
/** An object that can iterate over an {@link TParseTree}.
*
* @author David Chandler */
class ParseIterator {

View file

@ -77,7 +77,7 @@ class TPair {
* right side, first and from l, the left side, second. The pair
* returned may be illegal, such as the (A . ') you can get from
* ACIP {A'AAMA}.
* @throw IllegalArgumentException if N is out of range */
* @throws IllegalArgumentException if N is out of range */
TPair minusNRightmostACIPCharacters(int N)
throws IllegalArgumentException
{

View file

@ -20,7 +20,7 @@ package org.thdl.tib.text.ttt;
import java.util.ArrayList;
/** A list of non-empty list of {@link #TStackListList
/** A list of non-empty list of {@link TStackListList
* TStackListLists} representing all the ways you could break up a
* tsheg bar of ACIP into stacks (i.e., grapheme clusters).
*
@ -61,7 +61,7 @@ class TParseTree {
return k;
}
/** Returns the number of {@link #TPair pairs} that are in a
/** Returns the number of {@link TPair pairs} that are in a
* parse of this tree. */
public int numberOfPairs() {
if (al.isEmpty()) return 0;

View file

@ -168,7 +168,7 @@ class TStackList {
private static final boolean ddebug = false;
/** Returns true if and only if this stack list contains a clearly
* illegal construct, such as an TPair (V . something). */
* illegal construct. An example of such is a TPair (V . something). */
boolean isClearlyIllegal() {
// check for {D}{VA} sorts of things:
for (int i = 0; i < size(); i++) {

View file

@ -21,7 +21,7 @@ package org.thdl.tib.text.ttt;
import java.util.ArrayList;
import java.util.ListIterator;
/** A list of {@link #TStackList} objects, each of which is for a
/** A list of {@link TStackList} objects, each of which is for a
* stack (a grapheme cluster), typically corresponding to one
* ambiguous section of a tsheg bar.
*