ICU-2452 doc cleanup

X-SVN-Rev: 10650
This commit is contained in:
Doug Felt 2002-12-13 00:19:49 +00:00
parent 63bcd3ab6e
commit 1f97544c0d
6 changed files with 64 additions and 8 deletions

View File

@ -6,8 +6,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/build.xml,v $
* $Date: 2002/12/12 23:26:46 $
* $Revision: 1.61 $
* $Date: 2002/12/13 00:19:40 $
* $Revision: 1.62 $
*
*******************************************************************************
* This is the ant build file for ICU4J. See readme.html for more information.
@ -166,7 +166,7 @@
<echo message="doc params: ${doc.params}"/>
<mkdir dir="${doc.dir}"/>
<javadoc
packagenames="com.ibm.icu.lang,com.ibm.icu.text,com.ibm.icu.util,com.ibm.icu.math,com.ibm.richtext.demo,com.ibm.richtext.textlayout.attributes,com.ibm.richtext.awtui,com.ibm.richtext.print,com.ibm.richtext.styledtext,com.ibm.richtext.swingui,com.ibm.richtext.textapps,com.ibm.richtext.textformat,com.ibm.richtext.textpanel"
packagenames="com.ibm.icu.lang,com.ibm.icu.text,com.ibm.icu.util,com.ibm.icu.math,com.ibm.richtext.demo,com.ibm.richtext.textlayout.attributes,com.ibm.richtext.awtui,com.ibm.richtext.print,com.ibm.richtext.styledtext,com.ibm.richtext.swingui,com.ibm.richtext.textformat,com.ibm.richtext.textpanel"
sourcepath="${src.dir}"
destdir="${doc.dir}"
nodeprecatedlist="true"

View File

@ -0,0 +1,20 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head><!-- Copyright (C) 2002, International Business Machines Corporation and
others. All Rights Reserved.
-->
<title>C:ICU4J .lang Package Overview</title>
</head>
<body bgcolor="white">
<p>Provides EditDemo, a simple, multiple-document styled text editor, built with the richtext classes in the textpanel and textframe packages.</p>
<p>To run the demo, type:
<tt><blockquote> java -classpath classes com.ibm.richtext.demo.EditDemo [-swing] [file]*</blockquote>
It will use a Swing GUI if <code>-swing</code> is present, otherwise it will use an AWT GUI. One or more <code>file</code> arguments can be present, these must be files that have been created with the EditDemo. A separate window will be opened for each file.</p>
<p>Other classes in this package are supporting classes for the EditDemo.</p>
</body>
</html>

View File

@ -1,5 +1,5 @@
/*
* @(#)$RCSfile: MTextIterator.java,v $ $Revision: 1.4 $ $Date: 2002/02/16 03:06:43 $
* @(#)$RCSfile: MTextIterator.java,v $ $Revision: 1.5 $ $Date: 2002/12/13 00:19:49 $
*
* (C) Copyright IBM Corp. 1998-1999. All Rights Reserved.
*
@ -33,6 +33,9 @@ import com.ibm.richtext.textlayout.attributes.AttributedCharacterIterator.Attrib
import com.ibm.richtext.textlayout.attributes.Map;
JDK11IMPORTS*/
/**
* An AttributedCharacterIterator over an MConstText.
*/
public final class MTextIterator implements AttributedCharacterIterator,
Cloneable {
@ -399,4 +402,4 @@ public final class MTextIterator implements AttributedCharacterIterator,
getBeginIndex(),
getEndIndex());
}
}
}

View File

@ -1,5 +1,5 @@
/*
* @(#)$RCSfile: TestMTextIterator.java,v $ $Revision: 1.2 $ $Date: 2002/02/16 03:06:44 $
* @(#)$RCSfile: TestMTextIterator.java,v $ $Revision: 1.3 $ $Date: 2002/12/13 00:19:08 $
*
* (C) Copyright IBM Corp. 1998-1999. All Rights Reserved.
*
@ -24,7 +24,10 @@ import com.ibm.richtext.textlayout.attributes.AttributeMap;
import com.ibm.richtext.textpanel.TextPanel;
public class TestMTextIterator {
/**
* Test for MTextIterator.
*/
class TestMTextIterator {
static final String COPYRIGHT =
"(C) Copyright IBM Corp. 1998-1999 - All Rights Reserved";
@ -114,4 +117,4 @@ public class TestMTextIterator {
new TestMTextIterator().test();
System.out.println("PASSED");
}
}
}

View File

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head><!-- Copyright (C) 2002, International Business Machines Corporation and
others. All Rights Reserved.
-->
<title>C:ICU4J .lang Package Overview</title>
</head>
<body bgcolor="white">
<p>Classes that format text in a background thread and render the formatted text to a graphics.</p>
</body>
</html>

View File

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head><!-- Copyright (C) 2002, International Business Machines Corporation and
others. All Rights Reserved.
-->
<title>C:ICU4J .lang Package Overview</title>
</head>
<body bgcolor="white">
<p>Richtext attribute support. Includes tab, first line indent, and margin attributes.</p>
</body>
</html>