Class LLCell


  • class LLCell
    extends java.lang.Object
    A linked list cell, which contains a ref to the object and next cell. The data,next members are public to this class, but not outside the collections.impl package.
    Author:
    Terence Parr MageLang Institute
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.lang.Object data  
      (package private) LLCell next  
    • Constructor Summary

      Constructors 
      Constructor Description
      LLCell​(java.lang.Object o)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • data

        java.lang.Object data
    • Constructor Detail

      • LLCell

        public LLCell​(java.lang.Object o)