gnu.lists

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » Kawa » gnu.lists 
gnu.lists
Java Source File NameTypeComment
AbstractFormat.javaClass
AbstractSequence.javaClass An AbstractSequence is used to implement Sequences, and almost all classes that extend AbstractSequence will implement Sequence. However, AbstractSequence itself does not implement Sequence. This is so we can use AbstractSequence to implement classes that are "sequence-like" (such as multi-dimesnional arrays) but are not Sequences. Additionally, a sequence may have zero or more attributes, which are name-value pairs.
Array.javaInterface General interface to arrays of arbitrary dimension.
AttributePredicate.javaInterface A predicate that (only) matches a ATTRIBUTE_VALUE.
BitVector.javaClass Simple adjustable-length vector of boolean values.
CharBuffer.javaClass Editable character sequence using a a buffer-gap implementstion and self-adjusting position.
CharSeq.javaInterface A sequence where each element is a character.
Consumable.javaInterface An object that can send its contents to a Consumer.
Consumer.javaInterface A Consumer is something that will accept data (output), and do something with it. A consumer is like a SAX DocumentHandler or a PrintWriter, but more abstract.
ConsumerWriter.javaClass A Writer that wraps (filters) a Consumer.
Convert.javaClass A class that encapsulates primitive<->Object conversions.
ElementPredicate.javaInterface A predicate that (only) matches a ELEMENT_VALUE.
EofClass.javaClass
ExtPosition.javaClass A SeqPosition for sequences that need more than a Pos int for a position.
ExtSequence.javaClass Abstract helper class for Sequences that use an ExtPosition.
F32Vector.javaClass Simple adjustable-length vector whose elements are 32-bit floats.
F64Vector.javaClass Simple adjustable-length vector whose elements are 64-bit floats.
FilterConsumer.javaClass A Consumer that wraps some other Consumer.
FString.javaClass Simple adjustable-length vector whose elements are 32-bit floats.
FVector.javaClass Simple adjustable-length vector whose elements are Object references.
GapVector.javaClass An array with a gap in the middle, allowing efficient insert and delete.
GeneralArray.javaClass A class to handle general multi-dimensional arrays. This class is unfinished. If the number of dimensions (the "rank") is one, should use a class that implements Sequence. GeneralArray uses a SimpleVector 'base' to store the actual data, and provides general linear mapping from the array indexes to an element index in the 'base' SimpleVector.
GeneralArray1.javaClass
ItemPredicate.javaInterface A predicate (or type) on an item in a sequence.
LList.javaClass Semi-abstract class for traditions Lisp-style lists. A list is implemented as a chain of Pair objects, where the 'car' field of the Pair points to a data element, and the 'cdr' field points to the next Pair.
LListPosition.javaClass LListPosition - a SeqPosition for LLists. Normally, we just use an int pos to indicate a position in a sequence.
NodePredicate.javaInterface A predicate that (only) matches only "nodes" in the XML sense. Only matches nodes in the XML "info-set".
Pair.javaClass A "pair" object, as used in Lisp-like languages. When used to implement a list, the 'car' field contains an element's value, and the 'cdr' field points to either the next Pair or LList.Empty (which represents the end of the list).
PairWithPosition.javaClass A Pair with the file name and position it was read from.
PositionConsumer.javaInterface An object that can be "fed" a TreePosition, and will do something with it.
PositionManager.javaClass
PrintConsumer.javaClass A Consumer that extends a PrintWriter.
S16Vector.javaClass Simple adjustable-length vector of signed 16-bit integers (shorts).
S32Vector.javaClass Simple adjustable-length vector of signed 32-bit integers (ints).
S64Vector.javaClass Simple adjustable-length vector of signed 64-bit integers (longs).
S8Vector.javaClass Simple adjustable-length vector of signed 8-bit integers (bytes).
SeqPosition.javaClass A position in a sequence (list). Conceptually similar to Java2's ListIterator, but we use the name "Position" to indicate that it can be used to both indicate a position in a sequence and to iterate through a sequence.
Sequence.javaInterface A Sequence is an ordered list of elements. It is similar to and compatible with the Java2 java.util.List interface, but does not require it. All standard classes that implement Sequence also extend AbstractSequence. Using AbstractSequence provides default implementations for many methods, and also makes things a bit more efficient.
SimpleVector.javaClass A SimpleVector implement as a simple array plus a current size. Methods with the word "Buffer" are methods which use the underlying array, ignoring the 'size' field. Can be used to implement CommonLisp simple vectors, but all simple vectors are also adjustable (by re-allocating the buffer) and have a fill pointer (the size field).
StableVector.javaClass Implements a stable sequence with sticky positions. I.e if you have a position, it gets automatically updated after insertions and deletions.
Strings.javaClass Various static utility methods for general strings (CharSeqs).
SubCharSeq.javaClass
SubSequence.javaClass A sequence consisting of a sub-range of the elements of a base sequence.
TreeList.javaClass A compact representation of a tree, that is a nested list structure.
TreePosition.javaClass A position that can also go down and up in a tree.
U16Vector.javaClass Simple adjustable-length vector of unsigned 16-bit integers (shorts).
U32Vector.javaClass Simple adjustable-length vector of unsigned 32-bit integers (ints).
U64Vector.javaClass Simple adjustable-length vector of unsigned 64-bit integers (longs).
U8Vector.javaClass Simple adjustable-length vector of unsigned 8-bit integers (bytes).
UnescapedData.javaClass Used for text that is supposed to be written out verbatim.
VoidConsumer.javaClass A Consumer that does nothing.
XConsumer.javaInterface A Consumer extended with XML-specific methods. This should probably be in gnu.xml, but that complications TreeList.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.