mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-29 15:30:56 +00:00
* EOAccess/EOAdaptorChannel.m: o replaced NSDebugMLLog by EOFLOGObjectLevel/EOFLOGObjectLevelArgs * EOAccess/EOAttribute.m: o replaced NSDebugMLLog by EOFLOGObjectLevel/EOFLOGObjectLevelArgs * EOAccess/EODatabaseChannel.m: o replaced NSDebugMLLog by EOFLOGObjectLevel/EOFLOGObjectLevelArgs o Move registration for EODatabaseChannelNeddedNotification from +load to +initialize. (David Ayers <d.ayers@inode.at>) * EOAccess/EODatabaseContext.m: o Move registration for EODatabaseChannelNeddedNotification from +load to +initialize. (David Ayers <d.ayers@inode.at>) * EOAccess/EOEntity.m: o in - (void) _setIsEdited, autorelease instead of destroy * EOAccess/EORelationship.m o -validateValue: don't raise not implemented exception o initialize variables in -foreignKeyInDestination * EOAccess/EOSQLExpression.m: o added NSAsserts o use anyRelationshipNamed: instead of relationshipNamed: to find hidden relationships * EOControl/EOClassDescription.m o -displayNameForKey: use -stringWithCapacity instead of +alloc -initWithCapacity (missing autorelease) o -validationExceptionWithFormat: initialize variables o -aggregateExceptionWithExceptions: initialize variables o -aggregateExceptionWithExceptions: autorelease copied value o -exceptionAddingEntriesToUserInfo: initialize variables o -exceptionAddingEntriesToUserInfo: autorelease copied userInfo o -snapshot autorelease copied value o -updateFromSnapshot: autorelease copied value * EOControl/EOFetchSpecification.h: o added +fetchSpecificationWithEntityName:qualifier:sortOrderings:usesDistinct:isDeep:hints: o added +fetchSpecificationWithEntityName:qualifier:sortOrderings:usesDistinct: * EOControl/EOFetchSpecification.m: o added +fetchSpecificationWithEntityName:qualifier:sortOrderings:usesDistinct:isDeep:hints: o added +fetchSpecificationWithEntityName:qualifier:sortOrderings:usesDistinct: o removed +fetchSpecificationNamed:entityNamed: (implemented in EOUtilities) o Insure that EODatabaseContext is initialized early. (David Ayers <d.ayers@inode.at>) * EOControl/EOGenericRecord.m o in -eoFormatSizeDictionary: handle /0 o in +eoCalculateAllSizeWith: don't de-fault objects o in +eoCalculateAllSizeWith: manage a local autorelease pool * EOControl/EOKeyValueCoding.h: o added -smartTakeValue:forKey: o -smartTakeValue:forKeyPath: o -storedValuesForKeyPaths: * EOControl/EOGlobalID.m: o Insure that EODatabaseContext is initialized early. (David Ayers <d.ayers@inode.at>) * EOControl/EOQualifier.m: o +operatorSelectorForString:]): Parse 'doesContain' instead of 'contains' (David Ayers <d.ayers@inode.at>) * EOControl/EODebug.m: o include NSDebug.h git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@15845 72102866-910b-0410-8b05-ffd578937521
78 lines
2.3 KiB
Objective-C
78 lines
2.3 KiB
Objective-C
/*
|
|
EOKeyValueCoding.h
|
|
|
|
Copyright (C) 2000 Free Software Foundation, Inc.
|
|
|
|
Author: Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
|
Date: February 2000
|
|
|
|
This file is part of the GNUstep Database Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; see the file COPYING.LIB.
|
|
If not, write to the Free Software Foundation,
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __EOKeyValueCoding_h__
|
|
#define __EOKeyValueCoding_h__
|
|
|
|
#import <Foundation/NSObject.h>
|
|
#import <Foundation/NSArray.h>
|
|
#import <Foundation/NSKeyValueCoding.h>
|
|
#import <Foundation/NSDictionary.h>
|
|
|
|
#import <EOControl/EOKeyValueCodingBase.h>
|
|
|
|
|
|
@interface NSObject (EOKVCPAdditions2)
|
|
- (void)smartTakeValue: (id)anObject
|
|
forKey: (NSString *)aKey;
|
|
- (void)smartTakeValue: (id)anObject
|
|
forKeyPath: (NSString *)aKeyPath;
|
|
- (void)takeStoredValue: value
|
|
forKeyPath: (NSString *)key;
|
|
- (void)takeStoredValuesFromDictionary: (NSDictionary *)dictionary;
|
|
- (NSDictionary *)valuesForKeyPaths: (NSArray *)keyPaths;
|
|
- (NSDictionary *)storedValuesForKeyPaths: (NSArray *)keyPaths;
|
|
@end
|
|
|
|
|
|
@interface NSArray (EOKeyValueCoding)
|
|
- (id)valueForKey: (NSString *)key;
|
|
- (id)valueForKeyPath: (NSString *)keyPath;
|
|
- (id)computeSumForKey: (NSString *)key;
|
|
- (id)computeAvgForKey: (NSString *)key;
|
|
- (id)computeCountForKey: (NSString *)key;
|
|
- (id)computeMaxForKey: (NSString *)key;
|
|
- (id)computeMinForKey: (NSString *)key;
|
|
@end
|
|
|
|
|
|
|
|
|
|
@interface NSDictionary (EOKeyValueCoding)
|
|
- (id)valueForKey: (NSString *)key;
|
|
@end
|
|
|
|
|
|
@interface NSMutableDictionary (EOKeyValueCoding)
|
|
- (void)takeValue: (id)value
|
|
forKey: (NSString*)key;
|
|
@end
|
|
|
|
extern NSString *EOUnknownKeyException;
|
|
extern NSString *EOTargetObjectUserInfoKey;
|
|
extern NSString *EOUnknownUserInfoKey;
|
|
|
|
#endif /* __EOKeyValueCoding_h__ */
|