Constructor Summary |
---|
CustomPropCollection()
Constructor. |
Property Getters/Setters Summary | ||
---|---|---|
function | getCount() | |
Gets the number of elements actually contained in the collection. | ||
function | get(index) | |
Gets the element at specified index. |
Method Summary | ||
---|---|---|
function | add(customProp) | |
Add the CustomProp object in the collection. | ||
function | clear() | → inherited from Collection |
Removes all elements from collection. | ||
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(customProp) | |
Remove the CustomProp object from the collection. |
Constructor Detail |
---|
function CustomPropCollection()
Property Getters/Setters Detail |
---|
getCount : Number | |
function getCount() |
get : CustomProp | |
function get(index) |
index
- Method Detail |
---|
add | |
function add(customProp) |
customProp: CustomProp
- remove | |
function remove(customProp) |
customProp: CustomProp
- iterator | |
function iterator() |
isExist | |
function isExist(index) |
index: Number
- index of element.clear | |
function clear() |