Inheritance diagram for PowerUI.TouchList:

Public Member Functions

void removeAt (int index)
 Removes the given index. More...
 
void remove (TouchPointer touch)
 Removes the given node. More...
 
void insert (int index, TouchPointer touch)
 Insert at the given index. More...
 
void push (TouchPointer touch)
 Adds the given touch to the list. More...
 
TouchPointer item (int index)
 Gets a touch at a particular index. More...
 
IEnumerator< TouchPointerGetEnumerator ()
 

Properties

int length [get]
 The number of nodes in the list. More...
 
TouchPointer this[int index] [get, set]
 Gets an element at the specified index. More...
 

Private Member Functions

IEnumerator IEnumerable. GetEnumerator ()
 

Private Attributes

List< TouchPointervalues =new List<TouchPointer>()
 

Member Function Documentation

IEnumerator<TouchPointer> PowerUI.TouchList.GetEnumerator ( )
inline
IEnumerator IEnumerable. PowerUI.TouchList.GetEnumerator ( )
inlineprivate
void PowerUI.TouchList.insert ( int  index,
TouchPointer  touch 
)
inline

Insert at the given index.

TouchPointer PowerUI.TouchList.item ( int  index)
inline

Gets a touch at a particular index.

void PowerUI.TouchList.push ( TouchPointer  touch)
inline

Adds the given touch to the list.

void PowerUI.TouchList.remove ( TouchPointer  touch)
inline

Removes the given node.

void PowerUI.TouchList.removeAt ( int  index)
inline

Removes the given index.

Member Data Documentation

List<TouchPointer> PowerUI.TouchList.values =new List<TouchPointer>()
private

Property Documentation

int PowerUI.TouchList.length
get

The number of nodes in the list.

TouchPointer PowerUI.TouchList.this[int index]
getset

Gets an element at the specified index.