| Package | feathers.data | 
| Class | public class VectorIntListCollectionDataDescriptor | 
| Inheritance | VectorIntListCollectionDataDescriptor    Object | 
| Implements | IListCollectionDataDescriptor | 
| Product Version : | Feathers 1.0.0 | 
IListCollectionDataDescriptor implementation for Vector.<int>.
	 
	 See also
| Method | Defined By | ||
|---|---|---|---|
		 Constructor.  | VectorIntListCollectionDataDescriptor | ||
addItemAt(data:Object, item:Object, index:int):void 
		 
		 Adds an item to the data source, at the specified index.  | VectorIntListCollectionDataDescriptor | ||
getItemAt(data:Object, index:int):Object 
		 
		 Returns the item at the specified index in the data source.  | VectorIntListCollectionDataDescriptor | ||
getItemIndex(data:Object, item:Object):int 
		 
		 Determines which index the item appears at within the data source.  | VectorIntListCollectionDataDescriptor | ||
getLength(data:Object):int 
		 
		 The number of items in the data source.  | VectorIntListCollectionDataDescriptor | ||
removeAll(data:Object):void 
		 
		 Removes all items from the data source.  | VectorIntListCollectionDataDescriptor | ||
removeItemAt(data:Object, index:int):Object 
		 
		 Removes the item at the specified index from the data source and
		 returns it.  | VectorIntListCollectionDataDescriptor | ||
setItemAt(data:Object, item:Object, index:int):void 
		 
		 Replaces the item at the specified index with a new item.  | VectorIntListCollectionDataDescriptor | ||
| VectorIntListCollectionDataDescriptor | () | Constructor | 
public function VectorIntListCollectionDataDescriptor()Constructor.
| addItemAt | () | method | 
 public function addItemAt(data:Object, item:Object, index:int):voidAdds an item to the data source, at the specified index.
Parameters
data:Object | |
item:Object | |
index:int | 
| getItemAt | () | method | 
 public function getItemAt(data:Object, index:int):ObjectReturns the item at the specified index in the data source.
Parameters
data:Object | |
index:int | 
Object | 
| getItemIndex | () | method | 
 public function getItemIndex(data:Object, item:Object):int
		 
		 Determines which index the item appears at within the data source. If
		 the item isn't in the data source, returns -1.
		 
Parameters
data:Object | |
item:Object | 
int | 
| getLength | () | method | 
 public function getLength(data:Object):intThe number of items in the data source.
Parameters
data:Object | 
int | 
| removeAll | () | method | 
 public function removeAll(data:Object):voidRemoves all items from the data source.
Parameters
data:Object | 
| removeItemAt | () | method | 
 public function removeItemAt(data:Object, index:int):ObjectRemoves the item at the specified index from the data source and returns it.
Parameters
data:Object | |
index:int | 
Object | 
| setItemAt | () | method | 
 public function setItemAt(data:Object, item:Object, index:int):voidReplaces the item at the specified index with a new item.
Parameters
data:Object | |
item:Object | |
index:int |