Prepare implementing -validateValue:forKey:

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18742 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2004-03-01 16:49:56 +00:00
parent bb6258aaad
commit 349690d407

View file

@ -1674,19 +1674,18 @@ associationsKeys:(NSArray*)associationsKeys
};
//--------------------------------------------------------------------
-(id)validateValue:(id*)valuePtr
forKey:(id)key
-(NSException*)validateValue:(id*)valuePtr
forKey:(NSString*)key
{
LOGObjectFnNotImplemented(); //TODOFN
return nil;
};
//--------------------------------------------------------------------
+(id)validateValue:(id*)valuePtr
forKey:(id)key
{
LOGClassFnNotImplemented(); //TODOFN
return nil;
NSException* exception=nil;
LOGObjectFnStart();
/*
// Should all default implementation (i.e. the one which call validateXX:
exception=[super validateValue:valuePtr
forKey:key];
*/
LOGObjectFnStop();
return exception;
};
@end