git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21341 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-06-22 09:09:40 +00:00
parent 4aab090090
commit ac5ecec04f
3 changed files with 15 additions and 7 deletions

View file

@ -36,7 +36,7 @@
#ifndef STRICT_OPENSTEP
/** An exception for an unknown key in [NSObject(NSKeyValueCoding)]. */
GS_EXPORT NSString* const NSUnknownKeyException;
GS_EXPORT NSString* const NSUndefinedKeyException;
/**
* <p>This describes an informal protocol for <em>key-value coding</em>, a
@ -142,7 +142,7 @@ GS_EXPORT NSString* const NSUnknownKeyException;
* Invoked when -setValue:forKey: / -takeStoredValue:forKey: are called with
* a key which can't be associated with an accessor method or instance
* variable. Subclasses may override this method to add custom handling.
* NSObject raises an NSUnknownKeyException, with a userInfo dictionary
* NSObject raises an NSUndefinedKeyException, with a userInfo dictionary
* containing NSTargetObjectUserInfoKey with the receiver an
* NSUnknownUserInfoKey with the supplied key entries.<br />
* Called when the key passed to -setValue:forKey: cannot be used.
@ -336,7 +336,7 @@ GS_EXPORT NSString* const NSUnknownKeyException;
* Invoked when -valueForKey: / -storedValueForKey: are called with a key,
* which can't be associated with an accessor method or instance variable.
* Subclasses may override this method to add custom handling. NSObject
* raises an NSUnknownKeyException, with a userInfo dictionary containing
* raises an NSUndefinedKeyException, with a userInfo dictionary containing
* NSTargetObjectUserInfoKey with the receiver an NSUnknownUserInfoKey with
* the supplied key entries.<br />
*/