Up

GSWeb: Class GSWMultiKeyDictionary

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Version: 1.6

Date: 2004/09/01 15:56:03

Copyright: (C) 1999-2004 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the GSWCache class
  2. Software documentation for the GSWMultiKeyDictionary class

Software documentation for the GSWCache class

GSWCache : GSWMultiKeyDictionary

Declared in:
Foundation/GSWMultiKeyDictionary.h
Standards:

Description forthcoming.


Instance Variables

Method summary

cache 

+ (GSWCache*) cache;

Description forthcoming.


cacheWithDefaultDuration: defaultFlags: 

+ (GSWCache*) cacheWithDefaultDuration: (NSTimeInterval)defaultDuration defaultFlags: (unsigned int)defaultFlags;

Description forthcoming.


deleteExpiredEntries 

- (void) deleteExpiredEntries;

Description forthcoming.


initWithDefaultDuration: defaultFlags: 

- (id) initWithDefaultDuration: (NSTimeInterval)defaultDuration defaultFlags: (unsigned int)defaultFlags;

Description forthcoming.


setObject: withDuration: forKey: 

- (void) setObject: (id)object withDuration: (NSTimeInterval)duration forKey: (id)key;

Description forthcoming.


setObject: withDuration: forKeys: ,...

- (void) setObject: (id)object withDuration: (NSTimeInterval)duration forKeys: (id)key,...;

Description forthcoming.


setObject: withDuration: forKeys: count: 

- (void) setObject: (id)object withDuration: (NSTimeInterval)duration forKeys: (id*)keys count: (unsigned)count;

Description forthcoming.




Instance Variables for GSWCache Class

_defaultDuration

@protected NSTimeInterval _defaultDuration;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_defaultFlags

@protected unsigned int _defaultFlags;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Software documentation for the GSWMultiKeyDictionary class

GSWMultiKeyDictionary : NSObject

Declared in:
Foundation/GSWMultiKeyDictionary.h
Standards:

Description forthcoming.


Instance Variables

Method summary

allSubValuesForKeys: ,...

- (NSArray*) allSubValuesForKeys: (id)key,...;

Description forthcoming.


allSubValuesForKeys: count: 

- (NSArray*) allSubValuesForKeys: (id*)keys count: (unsigned)count;

Description forthcoming.


allSubValuesForKeysArray: 

- (NSArray*) allSubValuesForKeysArray: (NSArray*)keysArray;

Description forthcoming.


allValues 

- (NSArray*) allValues;

Description forthcoming.


initWithCapacity: 

- (id) initWithCapacity: (unsigned int)capacity;

Description forthcoming.


makeObjectsPerformSelector: 

- (void) makeObjectsPerformSelector: (SEL)selector;

Description forthcoming.


makeObjectsPerformSelector: withObject: 

- (void) makeObjectsPerformSelector: (SEL)selector withObject: (id)object;

Description forthcoming.


makeObjectsPerformSelector: withObject: withObject: 

- (void) makeObjectsPerformSelector: (SEL)selector withObject: (id)object1 withObject: (id)object2;

Description forthcoming.


objectEnumerator 

- (NSEnumerator*) objectEnumerator;

Description forthcoming.


objectForKeys: ,...

- (id) objectForKeys: (id)key,...;

Description forthcoming.


objectForKeys: count: 

- (id) objectForKeys: (id*)keys count: (unsigned)count;

Description forthcoming.


objectForKeysArray: 

- (id) objectForKeysArray: (NSArray*)keysArray;

Description forthcoming.


removeAllObjects 

- (void) removeAllObjects;

Description forthcoming.


removeAllSubObjectsForKeys: ,...

- (void) removeAllSubObjectsForKeys: (id)key,...;

Description forthcoming.


removeAllSubObjectsForKeys: count: 

- (void) removeAllSubObjectsForKeys: (id*)keys count: (unsigned)count;

Description forthcoming.


removeAllSubObjectsForKeysArray: 

- (void) removeAllSubObjectsForKeysArray: (NSArray*)keysArray;

Description forthcoming.


removeObjectForKeys: ,...

- (void) removeObjectForKeys: (id)key,...;

Description forthcoming.


removeObjectForKeys: count: 

- (void) removeObjectForKeys: (id*)keys count: (unsigned)count;

Description forthcoming.


removeObjectForKeysArray: 

- (void) removeObjectForKeysArray: (NSArray*)keysArray;

Description forthcoming.


setObject: forKeys: ,...

- (void) setObject: (id)object forKeys: (id)key,...;

Description forthcoming.


setObject: forKeys: count: 

- (void) setObject: (id)object forKeys: (id*)keys count: (unsigned)count;

Description forthcoming.


setObject: forKeysArray: 

- (void) setObject: (id)object forKeysArray: (NSArray*)keysArray;

Description forthcoming.




Instance Variables for GSWMultiKeyDictionary Class

_mapBase

@protected void* _mapBase;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.






Up