@@ -60,83 +60,74 @@ [_applicationName release]; [super dealloc]; } -- (void)setString: (OFString *)string - forPath: (OFString *)path -{ - OF_UNRECOGNIZED_SELECTOR -} - -- (void)setInteger: (long long)integer - forPath: (OFString *)path -{ - OF_UNRECOGNIZED_SELECTOR -} - -- (void)setBool: (bool)bool_ - forPath: (OFString *)path -{ - OF_UNRECOGNIZED_SELECTOR -} - -- (void)setFloat: (float)float_ - forPath: (OFString *)path -{ - OF_UNRECOGNIZED_SELECTOR -} - -- (void)setDouble: (double)double_ - forPath: (OFString *)path -{ - OF_UNRECOGNIZED_SELECTOR -} - -- (void)setArray: (OFArray *)array - forPath: (OFString *)path +- (void)setString: (OFString *)string forPath: (OFString *)path +{ + OF_UNRECOGNIZED_SELECTOR +} + +- (void)setLongLong: (long long)longLong forPath: (OFString *)path +{ + OF_UNRECOGNIZED_SELECTOR +} + +- (void)setBool: (bool)bool_ forPath: (OFString *)path +{ + OF_UNRECOGNIZED_SELECTOR +} + +- (void)setFloat: (float)float_ forPath: (OFString *)path +{ + OF_UNRECOGNIZED_SELECTOR +} + +- (void)setDouble: (double)double_ forPath: (OFString *)path +{ + OF_UNRECOGNIZED_SELECTOR +} + +- (void)setStringArray: (OFArray OF_GENERIC(OFString *) *)array + forPath: (OFString *)path { OF_UNRECOGNIZED_SELECTOR } - (OFString *)stringForPath: (OFString *)path { - return [self stringForPath: path - defaultValue: nil]; + return [self stringForPath: path defaultValue: nil]; } - (OFString *)stringForPath: (OFString *)path defaultValue: (OFString *)defaultValue { OF_UNRECOGNIZED_SELECTOR } -- (long long)integerForPath: (OFString *)path - defaultValue: (long long)defaultValue +- (long long)longLongForPath: (OFString *)path + defaultValue: (long long)defaultValue +{ + OF_UNRECOGNIZED_SELECTOR +} + +- (bool)boolForPath: (OFString *)path defaultValue: (bool)defaultValue { OF_UNRECOGNIZED_SELECTOR } -- (bool)boolForPath: (OFString *)path - defaultValue: (bool)defaultValue +- (float)floatForPath: (OFString *)path defaultValue: (float)defaultValue { OF_UNRECOGNIZED_SELECTOR } -- (float)floatForPath: (OFString *)path - defaultValue: (float)defaultValue +- (double)doubleForPath: (OFString *)path defaultValue: (double)defaultValue { OF_UNRECOGNIZED_SELECTOR } -- (double)doubleForPath: (OFString *)path - defaultValue: (double)defaultValue -{ - OF_UNRECOGNIZED_SELECTOR -} - -- (OFArray *)arrayForPath: (OFString *)path +- (OFArray OF_GENERIC(OFString *) *)stringArrayForPath: (OFString *)path { OF_UNRECOGNIZED_SELECTOR } - (void)removeValueForPath: (OFString *)path