mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 07:40:47 +00:00
Add method definitions.
This commit is contained in:
parent
67966d6cdd
commit
3d850f7eae
2 changed files with 128 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue