|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IValueCollection
An interface used in conjunction with an ICollection object. Allows an instance of ILoader to add and remove items to/from a collection.
Method Summary | |
---|---|
boolean |
add(int index,
java.lang.String object,
DataChangeNotifier notifier)
Adds an item at the given index |
java.lang.String |
get(int index)
Gets an item at the given index. |
boolean |
remove(int index,
DataChangeNotifier notifier)
Removes an item at the given index |
boolean |
removeAll(DataChangeNotifier notifier)
Removes all items from the collection. |
boolean |
set(int index,
java.lang.String object,
DataChangeNotifier notifier)
Replaces an item at the given index |
int |
size()
Returns the size of the value collection. |
Method Detail |
---|
int size()
java.lang.String get(int index)
index
-
boolean add(int index, java.lang.String object, DataChangeNotifier notifier)
index
- location where the item is to be addedobject
- the object to be addednotifier
- the object responsible for notifying listeners
boolean set(int index, java.lang.String object, DataChangeNotifier notifier)
index
- location where the item is to be insertedobject
- the object to be insertednotifier
- the object responsible for notifying listeners
boolean remove(int index, DataChangeNotifier notifier)
index
- location where the item is to be removedobject
- the object to be removednotifier
- the object responsible for notifying listeners
boolean removeAll(DataChangeNotifier notifier)
notifier
- the object responsible for notifying listeners
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |