Packagecom.yworks.yfiles.base
Classpublic class ListCell
InheritanceListCell Inheritance YObject Inheritance Object

Represents a so-called "cell" or "link" of the doubly linked list implementation com.yworks.yfiles.base.YList. It may be used to perform fast access and remove operations on that type of list.

See also

com.yworks.yfiles.base.YList


Public Properties
 PropertyDefined By
  info : Object
Specifies the element stored in this cell.
ListCell
Public Methods
 MethodDefined By
  
ListCell(init:Boolean = true)
ListCell
 Inherited
equals(o:Object):Boolean
YObject
  
getClass():Class
[override]
ListCell
 Inherited
hashCode():int
YObject
  
Returns the predecessor cell of this cell.
ListCell
  
Returns the successor cell of this cell.
ListCell
Property Detail
infoproperty
info:Object

Specifies the element stored in this cell.


Implementation
    public function get info():Object
    public function set info(value:Object):void
Constructor Detail
ListCell()Constructor
public function ListCell(init:Boolean = true)



Parameters
init:Boolean (default = true)
Method Detail
getClass()method
override public function getClass():Class

Returns
Class
pred()method 
public function pred():ListCell

Returns the predecessor cell of this cell. If there is no predecessor, then null is returned.

Returns
ListCell
succ()method 
public function succ():ListCell

Returns the successor cell of this cell. If there is no successor, then null is returned.

Returns
ListCell