Property Getters/Setters Summary | ||
---|---|---|
function | getCount() | |
Gets the number of elements actually contained in the collection. | ||
function | getNextID() | |
function | setNextID(value) | |
The next available ID for new connections. | ||
function | get(index) | |
Gets the element at the specified index. |
Method Summary | ||
---|---|---|
function | add(dataConnection) | |
Add the dataConnection in the collection. | ||
function | clear() | → inherited from Collection |
Removes all elements from collection. | ||
function | getDataConnection(ID) | |
Gets the element at the specified ID. | ||
function | isExist(index) | → inherited from Collection |
Is exist item in the collection. | ||
function | iterator() | → inherited from Collection |
Supports a simple iteration over a nongeneric collection. | ||
function | remove(dataConnection) | |
Remove the dataConnection from the collection. |
Property Getters/Setters Detail |
---|
getNextID/setNextID : long | |
function getNextID() / function setNextID(value) |
getCount : Number | |
function getCount() |
get : DataConnection | |
function get(index) |
index
- Method Detail |
---|
add | |
function add(dataConnection) |
dataConnection: DataConnection
- remove | |
function remove(dataConnection) |
dataConnection: DataConnection
- getDataConnection | |
function getDataConnection(ID) |
ID: long
- ID of DataConnectioniterator | |
function iterator() |
isExist | |
function isExist(index) |
index: Number
- index of element.clear | |
function clear() |