Packagecom.yworks.support
Classpublic class ListCell
InheritanceListCell Inheritance Object

The cells used inside YList

See also

YList


Public Properties
 PropertyDefined By
  info : Object
Gets or sets the element of this cell.
ListCell
  next : ListCell
[read-only] Returns the successor cell of this cell.
ListCell
  previous : ListCell
[read-only] Returns the predeccessor cell of this cell.
ListCell
Public Methods
 MethodDefined By
  
ListCell(o:Object)
Creates a new instance with the given object as content.
ListCell
Property Detail
infoproperty
info:Object

Gets or sets the element of this cell.


Implementation
    public function get info():Object
    public function set info(value:Object):void
nextproperty 
next:ListCell  [read-only]

Returns the successor cell of this cell.

If there is no successor then null is returned.


Implementation
    public function get next():ListCell
previousproperty 
previous:ListCell  [read-only]

Returns the predeccessor cell of this cell.

If there is no predecessor then null is returned.


Implementation
    public function get previous():ListCell
Constructor Detail
ListCell()Constructor
public function ListCell(o:Object)

Creates a new instance with the given object as content.

Parameters
o:Object — The object to contain in the info property.