Add method definitions.

This commit is contained in:
Gregory John Casamento 2021-10-16 13:14:14 -04:00
parent 67966d6cdd
commit 3d850f7eae
2 changed files with 128 additions and 0 deletions

View file

@ -26,5 +26,64 @@
@implementation NSDictionaryController
- (NSDictionaryControllerKeyValuePair *) newObject
{
return nil;
}
- (NSString *) initialKey
{
return nil;
}
- (void) setInitialKey: (NSString *)key
{
}
- (id) initialValue
{
return nil;
}
- (void) setInitialValue: (id)value
{
}
- (NSArray *) includedKeys
{
return nil;
}
- (void) setIncludedKeys: (NSArray *)includedKeys
{
}
- (NSArray *) excludedKeys
{
return nil;
}
- (void) setExcludedKeys: (NSArray *)excludedKeys
{
}
- (NSDictionary *) localizedKeyDictionary
{
return nil;
}
- (void) setLocalizedKeyDictionary: (NSDictionary *)dict
{
}
- (NSString *) localizedKeyTable
{
return nil;
}
- (void) setLocalizedKeyTable: (NSString *)keyTable
{
}
@end