01: package persistence.antlr.collections.impl;
02:
03: /* ANTLR Translator Generator
04: * Project led by Terence Parr at http://www.jGuru.com
05: * Software rights: http://www.antlr.org/license.html
06: *
07: */
08:
09: /**A linked list cell, which contains a ref to the object and next cell.
10: * The data,next members are public to this class, but not outside the
11: * collections.impl package.
12: *
13: * @author Terence Parr
14: * <a href=http://www.MageLang.com>MageLang Institute</a>
15: */
16: class LLCell {
17: Object data;
18: LLCell next;
19:
20: public LLCell(Object o) {
21: data = o;
22: }
23: }
|