PageRenderTime 43ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/antlr-2.7.5/antlr/collections/impl/LLCell.java

https://github.com/boo/boo-lang
Java | 25 lines | 8 code | 4 blank | 13 comment | 0 complexity | c80ca5bba3fc9d47b8ccdddadb397241 MD5 | raw file
Possible License(s): GPL-2.0
  1. package antlr.collections.impl;
  2. /* ANTLR Translator Generator
  3. * Project led by Terence Parr at http://www.jGuru.com
  4. * Software rights: http://www.antlr.org/license.html
  5. *
  6. * $Id: //depot/code/org.antlr/release/antlr-2.7.5/antlr/collections/impl/LLCell.java#1 $
  7. */
  8. /**A linked list cell, which contains a ref to the object and next cell.
  9. * 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. public LLCell(Object o) {
  19. data = o;
  20. }
  21. }