committing ungenerated parts of documentation patch from Chuck Burdick

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130492 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rodney Waldhoff 2001-08-17 23:00:26 +00:00
parent e549ed5b85
commit 54345a5c91
2 changed files with 329 additions and 240 deletions

View File

@ -1,4 +1,4 @@
<!-- $Id: build.xml,v 1.18 2001/07/15 00:17:24 craigmcc Exp $ --> <!-- $Id: build.xml,v 1.19 2001/08/17 23:00:26 rwaldhoff Exp $ -->
<project name="commons-collections" default="test" basedir="."> <project name="commons-collections" default="test" basedir=".">
<!-- patternset describing files to be copied from the doc directory --> <!-- patternset describing files to be copied from the doc directory -->
@ -153,6 +153,7 @@
public="true" public="true"
version="true" version="true"
author="true" author="true"
overview="${source.src.java}/org/apache/commons/collections/package.html"
splitindex="false" splitindex="false"
nodeprecated="true" nodeprecated="true"
nodeprecatedlist="true" nodeprecatedlist="true"
@ -161,6 +162,7 @@
nohelp="true" nohelp="true"
nonavbar="false" nonavbar="false"
serialwarn="false"> serialwarn="false">
<group title="Jakarta-commons Collections" packages="org.apache.commons.collections"/>
<link href="http://java.sun.com/products/jdk/1.3/docs/api"/> <link href="http://java.sun.com/products/jdk/1.3/docs/api"/>
</javadoc> </javadoc>
<delete dir="${workdir}"/> <delete dir="${workdir}"/>

View File

@ -1,4 +1,4 @@
<!-- $Id: package.html,v 1.2 2001/05/04 16:32:15 rwaldhoff Exp $ --> <!-- $Id: package.html,v 1.3 2001/08/17 23:00:26 rwaldhoff Exp $ -->
<html> <html>
<head> <head>
<title>Package Documentation for org.apache.commons.collections</title> <title>Package Documentation for org.apache.commons.collections</title>
@ -10,5 +10,92 @@
<p> <p>
See also the <tt>java.util</tt> package. See also the <tt>java.util</tt> package.
</p> </p>
<table border="1" cellspacing="0" cellpadding="3">
<tr bgcolor="#CCCCFF" class="TableHeadingColor">
<th>Category</th><th>Classes</th><th>Comments</th>
</tr>
<tr>
<td valign="top">List Implementations</td>
<td>
{@link org.apache.commons.collections.CursorableLinkedList}<br>
{@link org.apache.commons.collections.FastArrayList}
</td>
<td valign="top">
Special-purpose implementations of the {@link
java.util.List} interface.
</td>
</tr>
<tr>
<td valign="top">Map Implementations</td>
<td>
{@link org.apache.commons.collections.BeanMap}<br>
{@link org.apache.commons.collections.DefaultMapEntry}<br>
{@link org.apache.commons.collections.ExtendedProperties}<br>
{@link org.apache.commons.collections.FastHashMap}<br>
{@link org.apache.commons.collections.FastTreeMap}<br>
{@link org.apache.commons.collections.LRUMap}<br>
{@link org.apache.commons.collections.SoftRefHashMap}
</td>
<td valign="top">
Special-purpose implementations of the {@link
java.util.Map} interface.
</td>
</tr>
<tr>
<td valign="top">Stack and Queue Implementations</td>
<td>
{@link org.apache.commons.collections.ArrayStack}<br>
{@link org.apache.commons.collections.BinaryHeap}<br>
{@link org.apache.commons.collections.PriorityQueue}<br>
{@link org.apache.commons.collections.SynchronizedPriorityQueue}
</td>
<td valign="top">
Special-purpose implementations of the {@link
java.util.Stack} interface, as well as similar {@link
org.apache.commons.collections.PriorityQueue}
interface.
</td>
</tr>
<tr>
<td valign="top">Adapters</td>
<td>
{@link org.apache.commons.collections.ArrayEnumeration}<br>
{@link org.apache.commons.collections.ArrayIterator}<br>
{@link org.apache.commons.collections.EnumerationIterator}<br>
{@link org.apache.commons.collections.IteratorEnumeration}
</td>
<td valign="top">
Access Java1-style containers as though they were
Java2-style Collections and vice-versa.
</td>
</tr>
<tr>
<td valign="top">Utilities</td>
<td valign="top">
{@link org.apache.commons.collections.Closure}<br>
{@link org.apache.commons.collections.CollectionUtils}<br>
{@link org.apache.commons.collections.MapUtils}
</td>
<td valign="top">
Manipulate collection objects, determine set theoretic
properties, ensure type-safety, etc.
</td>
</tr>
<tr>
<td valign="top">Transformation Tools</td>
<td valign="top">
{@link org.apache.commons.collections.FilterIterator}<br>
{@link org.apache.commons.collections.Predicate}<br>
{@link org.apache.commons.collections.ProxyIterator}<br>
{@link org.apache.commons.collections.Transformer}<br>
{@link org.apache.commons.collections.TransformIterator}
</td>
<td valign="top">
Create views or functors on a collection. If your collection
represents <i>X</i>, these allow you to define and look at
<i>f(X)</i>.
</td>
</tr>
</table>
</body> </body>
</html> </html>