File: summary.xml

package info (click to toggle)
libgroboutils-java 5-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 8,496 kB
  • sloc: java: 59,880; xml: 12,762; sh: 377; perl: 104; makefile: 20
file content (51 lines) | stat: -rw-r--r-- 2,046 bytes parent folder | download | duplicates (3)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
version $Date: 2003/05/04 06:40:15 $

-->
<list>
    <category name="Utility">
        <project>
            <name>util-datastruct</name>
            <package>net.sourceforge.groboutils.util.datastruct.v1</package>
            <description>
             Contains various data structures, all JDK 1.1 compatible.
            </description>
            <class>
                <name>PathRegistry</name>
                <description>
                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.
                </description>
            </class>
            <class>
                <name>SynchQueue</name>
                <description>
                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.
                </description>
            </class>
            <class>
                <name>ObjectCache</name>
                <description>
                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.
                </description>
            </class>
            <status>
            03-May-2003:
            Just entered RC 1.  The documentation will need to be completed
            before this goes gold.
            </status>
        </project>
    </category>
</list>