Methods
- -addListItem
- adds an item to a list which is identified by "aKey". If the
list does not exist then it will be created.
- -addListItem:forKey:
- adds an item to a list which is identified by "aKey". If the
list does not exist then it will be created.
- -allKeys
- -existsListItem
- -existsListItem:forKey:
- -listItemsOfKey:
- -removeListItem
- removes the specified item. Does nothing if the item does not
exist.
- -removeListItem:forKey:
- removes the specified item. Does nothing if the item does not
exist.
adds an item to a list which is identified by "aKey". If the
list does not exist then it will be created.
See Also:
- addListItem:forKey:
- addListItem: (id) aListItem forKey: (id) aKey;
Parameter Descriptions
aListItem
- item to add
aKey
- corresponding key identifying the list
- method result
- self
adds an item to a list which is identified by "aKey". If the
list does not exist then it will be created.
See Also:
- addListItem
- addListItem: (id) aListItem forKey: (id) aKey;
Parameter Descriptions
aListItem
- item to add
aKey
- corresponding key identifying the list
- (id <ECIterator>) allKeys;
- method result
- returns the keys of all lists
See Also:
- existsListItem:forKey:
- (BOOL) existsListItem: (id) aListItem forKey: (id) aKey;
Parameter Descriptions
aListItem
- item to look for
aKey
- key identifying a list
- method result
- YES if the specified item exists in the specified list
See Also:
- existsListItem
- (BOOL) existsListItem: (id) aListItem forKey: (id) aKey;
Parameter Descriptions
aListItem
- item to look for
aKey
- key identifying a list
- (id <ECIterator>) listItemsOfKey: (id) aKey;
Parameter Descriptions
aKey
- key specifying a list
- method result
- returns all items of the specified list
removes the specified item. Does nothing if the item does not
exist.
See Also:
- removeListItem:forKey:
- removeListItem: (id) aListItem forKey: (id) aKey;
Parameter Descriptions
aListItem
- item to remove
aKey
- specifies the list
- method result
- self
removes the specified item. Does nothing if the item does not
exist.
See Also:
- removeListItem
- removeListItem: (id) aListItem forKey: (id) aKey;
Parameter Descriptions
aListItem
- item to remove
aKey
- specifies the list
(Last Updated November 08, 2007)