File: about.xml

package info (click to toggle)
libgroboutils-java 5-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,396 kB
  • ctags: 11,186
  • sloc: java: 59,748; xml: 12,762; sh: 377; perl: 104; makefile: 20
file content (34 lines) | stat: -rw-r--r-- 1,285 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
<?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>