1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<document>
<head>
<name>About</name>
<doc-version>$Date: 2003/05/04 06:40:15 $</doc-version>
<author>Matt Albrecht</author>
</head>
<body>
Contains various data structures, all JDK 1.1 compatible.
<UL>
<definition term="SynchQueue">
A Queue (first-in, first-out) which allows for waiting
indefinitely or for a specific period of time for a new
element to be added to the Queue. Useful for passing data
between threads. This has been optimized for synchronization.
</definition>
<definition term="PathRegistry">
A tree structure which allows for elements to be registered,
deregistered, and accessed. Tree elements can define themselves
as case sensitive or insensitive. They may also define that all
sub-nodes should return the current parent node. Nodes are
accessed through a single String, which is parsed internally.
The path separator may be any character.
</definition>
<definition term="ObjectCache">
A store of reserved objects to prevent the Garbage Collector
from working overtime on commonly used objects. It has options
for setting the maximum and minimum sizes for the number of
stored objects.
</definition>
</UL>
</body>
</document>
|