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.
-
m_list
-
Public vector element storing the list members as LValues
-
LList()
- Constructor
-
addElement(LValue)
-
Adds an LValue element to the list
-
count()
-
Returns the number of elements in the list
-
dump()
-
Reserved for internal use of the Nebulae MultiUser Server.
-
extractFromBytes(byte[], int)
-
Reserved for internal use of the Nebulae MultiUser Server.
-
getBytes()
-
Reserved for internal use of the Nebulae MultiUser Server.
-
getElementAt(int)
-
Fetches an LValue element from the list
-
setElementAt(int, LValue)
-
Stores an LValue element at the specified position
m_list
public java.util.Vector m_list
- Public vector element storing the list members as LValues
LList
public LList()
- Constructor
addElement
public boolean addElement(net.tabuleiro.nebulae.LValue elem)
- Adds an LValue element to the list
- Parameters:
- elem - LValue to add
- Returns:
- boolean
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
dump
public void dump()
- Reserved for internal use of the Nebulae MultiUser Server.
- Overrides:
- dump in class net.tabuleiro.nebulae.LValue
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
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
count
public int count()
- Returns the number of elements in the list
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