From ef0deedccafa04b9f3691ded8fe196c2e06a5d35 Mon Sep 17 00:00:00 2001 From: CaS Date: Mon, 5 Mar 2001 23:32:45 +0000 Subject: [PATCH] Regenerate html git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9303 72102866-910b-0410-8b05-ffd578937521 --- Documentation/gsdoc/NSUserDefaults.html | 125 +++++++++++++----------- 1 file changed, 67 insertions(+), 58 deletions(-) diff --git a/Documentation/gsdoc/NSUserDefaults.html b/Documentation/gsdoc/NSUserDefaults.html index bb17b7862..fb73516fc 100644 --- a/Documentation/gsdoc/NSUserDefaults.html +++ b/Documentation/gsdoc/NSUserDefaults.html @@ -100,37 +100,38 @@

Methods


Class Methods

standardUserDefaults

@@ -149,157 +150,165 @@ Standards: GNUstep NotMacOS-X NotOpenStep
tries to infer setup from operating system information etc (in particular, uses the LANGUAGES environment variable). +
+

setUserLanguages:

++ (void) setUserLanguages: (NSArray*)languages;
+Standards: GNUstep NotMacOS-X NotOpenStep
+ + Sets the array of user languages preferences. Places the specified + array in the NSLanguages user default. +

Instances Methods

-

arrayForKey:

+

arrayForKey:

- (NSArray*) arrayForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is an array. Returns nil if it is not.
-

boolForKey:

+

boolForKey:

- (BOOL) boolForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is a boolean. Returns NO if it is not present.
-

dataForKey:

+

dataForKey:

- (NSData*) dataForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is an NSData object. Returns nil if it is not.
-

dictionaryForKey:

+

dictionaryForKey:

- (NSDictionary*) dictionaryForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is an NSDictionary object. Returns nil if it is not.
-

dictionaryRepresentation

+

dictionaryRepresentation

- (NSDictionary*) dictionaryRepresentation;

-

floatForKey:

+

floatForKey:

- (float) floatForKey: (NSString*)defaultName;

-

init

+

init

- (id) init;

-

initWithUser:

+

initWithUser:

- (id) initWithUser: (NSString*)username;

-

integerForKey:

+

integerForKey:

- (int) integerForKey: (NSString*)defaultName;

-

objectForKey:

+

objectForKey:

- (id) objectForKey: (NSString*)defaultName;

-

persistentDomainForName:

+

persistentDomainForName:

- (NSDictionary*) persistentDomainForName: (NSString*)domainName;

-

persistentDomainNames

+

persistentDomainNames

- (NSArray*) persistentDomainNames;

-

registerDefaults:

+

registerDefaults:

- (void) registerDefaults: (NSDictionary*)dictionary;

-

removeObjectForKey:

+

removeObjectForKey:

- (void) removeObjectForKey: (NSString*)defaultName;

-

removePersistentDomainForName:

+

removePersistentDomainForName:

- (void) removePersistentDomainForName: (NSString*)domainName;

-

removeVolatileDomainForName:

+

removeVolatileDomainForName:

- (void) removeVolatileDomainForName: (NSString*)domainName;

-

searchList

+

searchList

- (NSArray*) searchList;

-

setBool:forKey:

+

setBool:forKey:

- (void) setBool: (BOOL)value forKey: (NSString*)defaultName;

-

setFloat:forKey:

+

setFloat:forKey:

- (void) setFloat: (float)value forKey: (NSString*)defaultName;

-

setInteger:forKey:

+

setInteger:forKey:

- (void) setInteger: (int)value forKey: (NSString*)defaultName;

-

setObject:forKey:

+

setObject:forKey:

- (void) setObject: (id)value forKey: (NSString*)defaultName;

-

setPersistentDomain:forName:

+

setPersistentDomain:forName:

- (void) setPersistentDomain: (NSDictionary*)domain forName: (NSString*)domainName;

-

setSearchList:

+

setSearchList:

- (void) setSearchList: (NSArray*)array;

-

setVolatileDomain:forName:

+

setVolatileDomain:forName:

- (void) setVolatileDomain: (NSDictionary*)domain forName: (NSString*)domainName;

-

stringArrayForKey:

+

stringArrayForKey:

- (NSArray*) stringArrayForKey: (NSString*)defaultName;

-

stringForKey:

+

stringForKey:

- (NSString*) stringForKey: (NSString*)defaultName;

-

synchronize

+

synchronize

- (BOOL) synchronize;

-

volatileDomainForName:

+

volatileDomainForName:

- (NSDictionary*) volatileDomainForName: (NSString*)domainName;

-

volatileDomainNames

+

volatileDomainNames

- (NSArray*) volatileDomainNames;