All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class net.tabuleiro.nebulae.LList

net.tabuleiro.nebulae.LValue
   |
   +----net.tabuleiro.nebulae.LList

public class LList
extends net.tabuleiro.nebulae.LValue
Class representing a Lingo compatible List value (LList for short). Lingo is a trademark of Macromedia, Inc. All rights reserved.


Variable Index

 o m_list
Public vector element storing the list members as LValues

Constructor Index

 o LList()
Constructor

Method Index

 o addElement(LValue)
Adds an LValue element to the list
 o count()
Returns the number of elements in the list
 o dump()
Reserved for internal use of the Nebulae MultiUser Server.
 o extractFromBytes(byte[], int)
Reserved for internal use of the Nebulae MultiUser Server.
 o getBytes()
Reserved for internal use of the Nebulae MultiUser Server.
 o getElementAt(int)
Fetches an LValue element from the list
 o setElementAt(int, LValue)
Stores an LValue element at the specified position

Variables

 o m_list
 public java.util.Vector m_list
Public vector element storing the list members as LValues

Constructors

 o LList
 public LList()
Constructor

Methods

 o addElement
 public boolean addElement(net.tabuleiro.nebulae.LValue elem)
Adds an LValue element to the list

Parameters:
elem - LValue to add
Returns:
boolean
 o extractFromBytes
 public int extractFromBytes(byte rawBytes[],
                             int offset)
Reserved for internal use of the Nebulae MultiUser Server.

Overrides:
extractFromBytes in class net.tabuleiro.nebulae.LValue
 o dump
 public void dump()
Reserved for internal use of the Nebulae MultiUser Server.

Overrides:
dump in class net.tabuleiro.nebulae.LValue
 o getElementAt
 public net.tabuleiro.nebulae.LValue getElementAt(int pos)
Fetches an LValue element from the list

Parameters:
pos - index of the element to be retrieved
Returns:
LValue
 o setElementAt
 public boolean setElementAt(int pos,
                             net.tabuleiro.nebulae.LValue elem)
Stores an LValue element at the specified position

Parameters:
pos - position to store the element
elem - LValue to store
Returns:
boolean
 o count
 public int count()
Returns the number of elements in the list

 o getBytes
 public byte[] getBytes()
Reserved for internal use of the Nebulae MultiUser Server.

Overrides:
getBytes in class net.tabuleiro.nebulae.LValue

All Packages  Class Hierarchy  This Package  Previous  Next  Index