1 package antlr.collections.impl;
2
3 /**A linked list cell, which contains a ref to the object and next cell.
4 * The data,next members are public to this class, but not outside the
5 * collections.impl package.
6 *
7 * @author Terence Parr
8 * <a href=http://www.MageLang.com>MageLang Institute</a>
9 */
10 class LLCell {
11 Object data;
12 LLCell next;
13
14
15 public LLCell(Object o) { data=o; }
16 }
17