mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-22 15:00:45 +00:00
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:
parent
bb6258aaad
commit
349690d407
1 changed files with 11 additions and 12 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue