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