diff --git a/ChangeLog b/ChangeLog index c86ed6d7d..119614c35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,7 +2,7 @@ * Makefile.preamble: define GS_NEW_DO to specify whether the new or the old DO code is to be used. Change the define and - rebuild the library for the new DO code. + rebuild the library if you need the old DO code. Advantages of new code - MacOS-X compatibly Should work between different processor architectures and word sizes @@ -20,6 +20,10 @@ * Source/GSPortCoder.m: removed - merged into NSPortCoder.m * Source/NSPortNameServer.m: Use GS_NEW_DO define to determine default port class + * Documentation/gsdoc/NSConnection.gsdoc: Added descriptions of + all the methods in the new implementation. The class is + perilously close to being fully documented! + * Documentation/gsdoc/...: updated all files to use new dtd. 2000-07-04 Richard Frith-Macdonald diff --git a/Documentation/gsdoc/Base.gsdoc b/Documentation/gsdoc/Base.gsdoc index dab880310..eba98a44b 100644 --- a/Documentation/gsdoc/Base.gsdoc +++ b/Documentation/gsdoc/Base.gsdoc @@ -1,5 +1,5 @@ - + GNUstep Base diff --git a/Documentation/gsdoc/NSArchiver.gsdoc b/Documentation/gsdoc/NSArchiver.gsdoc index 8b181f4f8..547137d7f 100644 --- a/Documentation/gsdoc/NSArchiver.gsdoc +++ b/Documentation/gsdoc/NSArchiver.gsdoc @@ -1,6 +1,6 @@ - - + + NSArchiver diff --git a/Documentation/gsdoc/NSArchiver.html b/Documentation/gsdoc/NSArchiver.html index dff79b2a8..c53006963 100644 --- a/Documentation/gsdoc/NSArchiver.html +++ b/Documentation/gsdoc/NSArchiver.html @@ -34,47 +34,47 @@

archiveRootObject:

-+ (BOOL) archiveRootObject: (id)rootObject
++ (BOOL) archiveRootObject: (id)rootObject;

archivedDataWithRootObject:

-+ (NSData*) archivedDataWithRootObject: (id)rootObject
++ (NSData*) archivedDataWithRootObject: (id)rootObject;

archiverData

-- (NSMutableData*) archiverData
+- (NSMutableData*) archiverData;

classNameEncodedForTrueClassName:

-- (NSString*) classNameEncodedForTrueClassName: (NSString*)trueName
+- (NSString*) classNameEncodedForTrueClassName: (NSString*)trueName;

encodeClassName:intoClassName:

-- (void) encodeClassName: (NSString*)trueName intoClassName: (NSString*)inArchiveName
+- (void) encodeClassName: (NSString*)trueName intoClassName: (NSString*)inArchiveName;

encodeConditionalObject:

-- (void) encodeConditionalObject: (id)object
+- (void) encodeConditionalObject: (id)object;

encodeRootObject:

-- (void) encodeRootObject: (id)rootObject
+- (void) encodeRootObject: (id)rootObject;

initForWritingWithMutableData:

-- (id) initForWritingWithMutableData: (NSMutableData*)data
+- (id) initForWritingWithMutableData: (NSMutableData*)data;

replaceObject:withObject:

-- (void) replaceObject: (id)object withObject: (id)newObject
+- (void) replaceObject: (id)object withObject: (id)newObject;

diff --git a/Documentation/gsdoc/NSArray.gsdoc b/Documentation/gsdoc/NSArray.gsdoc index fa1fb72c6..9d67009bd 100644 --- a/Documentation/gsdoc/NSArray.gsdoc +++ b/Documentation/gsdoc/NSArray.gsdoc @@ -1,6 +1,6 @@ - - + + NSArray diff --git a/Documentation/gsdoc/NSArray.html b/Documentation/gsdoc/NSArray.html index 65e93f5c0..69d425434 100644 --- a/Documentation/gsdoc/NSArray.html +++ b/Documentation/gsdoc/NSArray.html @@ -65,197 +65,197 @@

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

array

-+ (id) array
++ (id) array;

arrayWithArray:

-+ (id) arrayWithArray: (NSArray*)anArray
++ (id) arrayWithArray: (NSArray*)anArray;

arrayWithContentsOfFile:

-+ (id) arrayWithContentsOfFile: (NSString*)aPath
++ (id) arrayWithContentsOfFile: (NSString*)aPath;

arrayWithObject:

-+ (id) arrayWithObject: (id)anObject
++ (id) arrayWithObject: (id)anObject;

arrayWithObjects:

-+ (id) arrayWithObjects: (id)firstObj,
++ (id) arrayWithObjects: (id)firstObj,;

arrayWithObjects:

-+ (id) arrayWithObjects: (id*)objects
++ (id) arrayWithObjects: (id*)objects;

arrayByAddingObject:

-- (NSArray*) arrayByAddingObject: (id)anObject
+- (NSArray*) arrayByAddingObject: (id)anObject;

arrayByAddingObjectsFromArray:

-- (NSArray*) arrayByAddingObjectsFromArray: (NSArray*)otherArray
+- (NSArray*) arrayByAddingObjectsFromArray: (NSArray*)otherArray;

componentsJoinedByString:

-- (NSString*) componentsJoinedByString: (NSString*)separator
+- (NSString*) componentsJoinedByString: (NSString*)separator;

containsObject:

-- (BOOL) containsObject: (id)anObject
+- (BOOL) containsObject: (id)anObject;

count

-- (unsigned int) count
+- (unsigned int) count;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)locale
+- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)locale
+- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

firstObjectCommonWithArray:

-- (id) firstObjectCommonWithArray: (NSArray*)otherArray
+- (id) firstObjectCommonWithArray: (NSArray*)otherArray;

getObjects:

-- (void) getObjects: (id*)aBuffer
+- (void) getObjects: (id*)aBuffer;

getObjects:

-- (void) getObjects: (id*)aBuffer
+- (void) getObjects: (id*)aBuffer;

indexOfObject:

-- (unsigned int) indexOfObject: (id)anObject
+- (unsigned int) indexOfObject: (id)anObject;

indexOfObject:

-- (unsigned int) indexOfObject: (id)anObject
+- (unsigned int) indexOfObject: (id)anObject;

indexOfObjectIdenticalTo:

-- (unsigned int) indexOfObjectIdenticalTo: (id)anObject
+- (unsigned int) indexOfObjectIdenticalTo: (id)anObject;

indexOfObjectIdenticalTo:

-- (unsigned int) indexOfObjectIdenticalTo: (id)anObject
+- (unsigned int) indexOfObjectIdenticalTo: (id)anObject;

initWithArray:

-- (id) initWithArray: (NSArray*)anArray
+- (id) initWithArray: (NSArray*)anArray;

initWithContentsOfFile:

-- (id) initWithContentsOfFile: (NSString*)aPath
+- (id) initWithContentsOfFile: (NSString*)aPath;

initWithObjects:

-- (id) initWithObjects: (id)firstObj,
+- (id) initWithObjects: (id)firstObj,;

initWithObjects:

-- (id) initWithObjects: (id*)objects
+- (id) initWithObjects: (id*)objects;

isEqualToArray:

-- (BOOL) isEqualToArray: (NSArray*)otherArray
+- (BOOL) isEqualToArray: (NSArray*)otherArray;

lastObject

-- (id) lastObject
+- (id) lastObject;

makeObjectsPerformSelector:

-- (void) makeObjectsPerformSelector: (SEL)aSelector
+- (void) makeObjectsPerformSelector: (SEL)aSelector;

makeObjectsPerformSelector:withObject:

-- (void) makeObjectsPerformSelector: (SEL)aSelector withObject: (id)anObject
+- (void) makeObjectsPerformSelector: (SEL)aSelector withObject: (id)anObject;

objectAtIndex:

-- (id) objectAtIndex: (unsigned int)index
+- (id) objectAtIndex: (unsigned int)index;

objectEnumerator

-- (NSEnumerator*) objectEnumerator
+- (NSEnumerator*) objectEnumerator;

pathsMatchingExtensions:

-- (NSArray*) pathsMatchingExtensions: (NSArray*)filterTypes
+- (NSArray*) pathsMatchingExtensions: (NSArray*)filterTypes;

reverseObjectEnumerator

-- (NSEnumerator*) reverseObjectEnumerator
+- (NSEnumerator*) reverseObjectEnumerator;

sortedArrayHint

-- (NSData*) sortedArrayHint
+- (NSData*) sortedArrayHint;

sortedArrayUsingFunction:context:

-- (NSArray*) sortedArrayUsingFunction: (int(*)(id,id,void*))comparator context: (void*)context
+- (NSArray*) sortedArrayUsingFunction: (int(*)(id,id,void*))comparator context: (void*)context;

sortedArrayUsingFunction:context:

-- (NSArray*) sortedArrayUsingFunction: (int(*)(id,id,void*))compare context: (void*)context
+- (NSArray*) sortedArrayUsingFunction: (int(*)(id,id,void*))compare context: (void*)context;

sortedArrayUsingSelector:

-- (NSArray*) sortedArrayUsingSelector: (SEL)comparator
+- (NSArray*) sortedArrayUsingSelector: (SEL)comparator;

subarrayWithRange:

-- (NSArray*) subarrayWithRange: (NSRange)range
+- (NSArray*) subarrayWithRange: (NSRange)range;

writeToFile:atomically:

-- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag
+- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag;

diff --git a/Documentation/gsdoc/NSAssertionHandler.gsdoc b/Documentation/gsdoc/NSAssertionHandler.gsdoc index 6d3863548..f70d77c94 100644 --- a/Documentation/gsdoc/NSAssertionHandler.gsdoc +++ b/Documentation/gsdoc/NSAssertionHandler.gsdoc @@ -1,6 +1,6 @@ - - + + NSAssertionHandler diff --git a/Documentation/gsdoc/NSAssertionHandler.html b/Documentation/gsdoc/NSAssertionHandler.html index 5e53b57ed..95673e28b 100644 --- a/Documentation/gsdoc/NSAssertionHandler.html +++ b/Documentation/gsdoc/NSAssertionHandler.html @@ -29,17 +29,17 @@

currentHandler

-+ (NSAssertionHandler*) currentHandler
++ (NSAssertionHandler*) currentHandler;

handleFailureInFunction:file:lineNumber:description:

-- (void) handleFailureInFunction: (NSString*)functionName file: (NSString*)fileName lineNumber: (int)line description: (NSString*)format, ...
+- (void) handleFailureInFunction: (NSString*)functionName file: (NSString*)fileName lineNumber: (int)line description: (NSString*)format, ...;

handleFailureInMethod:object:file:lineNumber:description:

-- (void) handleFailureInMethod: (SEL)selector object: (id)object file: (NSString*)fileName lineNumber: (int)line description: (NSString*)format, ...
+- (void) handleFailureInMethod: (SEL)selector object: (id)object file: (NSString*)fileName lineNumber: (int)line description: (NSString*)format, ...;

diff --git a/Documentation/gsdoc/NSAttributedString.gsdoc b/Documentation/gsdoc/NSAttributedString.gsdoc index c8fa65f73..f1b83f3b6 100644 --- a/Documentation/gsdoc/NSAttributedString.gsdoc +++ b/Documentation/gsdoc/NSAttributedString.gsdoc @@ -1,6 +1,6 @@ - - + + NSAttributedString diff --git a/Documentation/gsdoc/NSAttributedString.html b/Documentation/gsdoc/NSAttributedString.html index 54a8c749f..a7b270968 100644 --- a/Documentation/gsdoc/NSAttributedString.html +++ b/Documentation/gsdoc/NSAttributedString.html @@ -37,57 +37,57 @@

attribute:atIndex:effectiveRange:

-- (id) attribute: (NSString*)attributeName atIndex: (unsigned int)index effectiveRange: (NSRange*)aRange
+- (id) attribute: (NSString*)attributeName atIndex: (unsigned int)index effectiveRange: (NSRange*)aRange;

attribute:atIndex:longestEffectiveRange:inRange:

-- (id) attribute: (NSString*)attributeName atIndex: (unsigned int)index longestEffectiveRange: (NSRange*)aRange inRange: (NSRange)rangeLimit
+- (id) attribute: (NSString*)attributeName atIndex: (unsigned int)index longestEffectiveRange: (NSRange*)aRange inRange: (NSRange)rangeLimit;

attributedSubstringFromRange:

-- (NSAttributedString*) attributedSubstringFromRange: (NSRange)aRange
+- (NSAttributedString*) attributedSubstringFromRange: (NSRange)aRange;

attributesAtIndex:effectiveRange:

-- (NSDictionary*) attributesAtIndex: (unsigned int)index effectiveRange: (NSRange*)aRange
+- (NSDictionary*) attributesAtIndex: (unsigned int)index effectiveRange: (NSRange*)aRange;

attributesAtIndex:longestEffectiveRange:inRange:

-- (NSDictionary*) attributesAtIndex: (unsigned int)index longestEffectiveRange: (NSRange*)aRange inRange: (NSRange)rangeLimit
+- (NSDictionary*) attributesAtIndex: (unsigned int)index longestEffectiveRange: (NSRange*)aRange inRange: (NSRange)rangeLimit;

initWithAttributedString:

-- (id) initWithAttributedString: (NSAttributedString*)attributedString
+- (id) initWithAttributedString: (NSAttributedString*)attributedString;

initWithString:

-- (id) initWithString: (NSString*)aString
+- (id) initWithString: (NSString*)aString;

initWithString:attributes:

-- (id) initWithString: (NSString*)aString attributes: (NSDictionary*)attributes
+- (id) initWithString: (NSString*)aString attributes: (NSDictionary*)attributes;

isEqualToAttributedString:

-- (BOOL) isEqualToAttributedString: (NSAttributedString*)otherString
+- (BOOL) isEqualToAttributedString: (NSAttributedString*)otherString;

length

-- (unsigned int) length
+- (unsigned int) length;

string

-- (NSString*) string
+- (NSString*) string;

diff --git a/Documentation/gsdoc/NSAutoreleasePool.gsdoc b/Documentation/gsdoc/NSAutoreleasePool.gsdoc index 474530574..d7f8e6baa 100644 --- a/Documentation/gsdoc/NSAutoreleasePool.gsdoc +++ b/Documentation/gsdoc/NSAutoreleasePool.gsdoc @@ -1,6 +1,6 @@ - - + + NSAutoreleasePool diff --git a/Documentation/gsdoc/NSAutoreleasePool.html b/Documentation/gsdoc/NSAutoreleasePool.html index 8abb3e3f0..978eb75b4 100644 --- a/Documentation/gsdoc/NSAutoreleasePool.html +++ b/Documentation/gsdoc/NSAutoreleasePool.html @@ -28,12 +28,12 @@

addObject:

-+ (void) addObject: (id)anObject
++ (void) addObject: (id)anObject;

addObject:

-- (void) addObject: (id)anObject
+- (void) addObject: (id)anObject;

diff --git a/Documentation/gsdoc/NSBundle.gsdoc b/Documentation/gsdoc/NSBundle.gsdoc index 2a68e5083..7ac6f55f6 100644 --- a/Documentation/gsdoc/NSBundle.gsdoc +++ b/Documentation/gsdoc/NSBundle.gsdoc @@ -1,6 +1,6 @@ - - + + NSBundle diff --git a/Documentation/gsdoc/NSBundle.html b/Documentation/gsdoc/NSBundle.html index e906f62a9..9a4206e37 100644 --- a/Documentation/gsdoc/NSBundle.html +++ b/Documentation/gsdoc/NSBundle.html @@ -43,87 +43,87 @@

allBundles

-+ (NSArray*) allBundles
++ (NSArray*) allBundles;

allFrameworks

-+ (NSArray*) allFrameworks
++ (NSArray*) allFrameworks;

bundleForClass:

-+ (NSBundle*) bundleForClass: (Class)aClass
++ (NSBundle*) bundleForClass: (Class)aClass;

bundleWithPath:

-+ (NSBundle*) bundleWithPath: (NSString*)path
++ (NSBundle*) bundleWithPath: (NSString*)path;

mainBundle

-+ (NSBundle*) mainBundle
++ (NSBundle*) mainBundle;

pathForResource:ofType:inDirectory:

-+ (NSString*) pathForResource: (NSString*)name ofType: (NSString*)extension inDirectory: (NSString*)bundlePath
++ (NSString*) pathForResource: (NSString*)name ofType: (NSString*)extension inDirectory: (NSString*)bundlePath;

bundlePath

-- (NSString*) bundlePath
+- (NSString*) bundlePath;

classNamed:

-- (Class) classNamed: (NSString*)className
+- (Class) classNamed: (NSString*)className;

infoDictionary

-- (NSDictionary*) infoDictionary
+- (NSDictionary*) infoDictionary;

initWithPath:

-- (id) initWithPath: (NSString*)fullPath
+- (id) initWithPath: (NSString*)fullPath;

load

-- (BOOL) load
+- (BOOL) load;

localizedStringForKey:value:

-- (NSString*) localizedStringForKey: (NSString*)key value: (NSString*)value
+- (NSString*) localizedStringForKey: (NSString*)key value: (NSString*)value;

pathForResource:ofType:

-- (NSString*) pathForResource: (NSString*)name ofType: (NSString*)extension
+- (NSString*) pathForResource: (NSString*)name ofType: (NSString*)extension;

pathForResource:ofType:inDirectory:

-- (NSString*) pathForResource: (NSString*)name ofType: (NSString*)extension inDirectory: (NSString*)bundlePath
+- (NSString*) pathForResource: (NSString*)name ofType: (NSString*)extension inDirectory: (NSString*)bundlePath;

pathsForResourcesOfType:inDirectory:

-- (NSArray*) pathsForResourcesOfType: (NSString*)extension inDirectory: (NSString*)bundlePath
+- (NSArray*) pathsForResourcesOfType: (NSString*)extension inDirectory: (NSString*)bundlePath;

principalClass

-- (Class) principalClass
+- (Class) principalClass;

resourcePath

-- (NSString*) resourcePath
+- (NSString*) resourcePath;

diff --git a/Documentation/gsdoc/NSCalendarDate.gsdoc b/Documentation/gsdoc/NSCalendarDate.gsdoc index 1fb7fd90f..fd92e9d60 100644 --- a/Documentation/gsdoc/NSCalendarDate.gsdoc +++ b/Documentation/gsdoc/NSCalendarDate.gsdoc @@ -1,6 +1,6 @@ - - + + NSCalendarDate diff --git a/Documentation/gsdoc/NSCalendarDate.html b/Documentation/gsdoc/NSCalendarDate.html index 4feab60cd..2099680cc 100644 --- a/Documentation/gsdoc/NSCalendarDate.html +++ b/Documentation/gsdoc/NSCalendarDate.html @@ -53,137 +53,137 @@

calendarDate

-+ (id) calendarDate
++ (id) calendarDate;

dateWithString:calendarFormat:

-+ (id) dateWithString: (NSString*)description calendarFormat: (NSString*)format
++ (id) dateWithString: (NSString*)description calendarFormat: (NSString*)format;

dateWithString:calendarFormat:

-+ (id) dateWithString: (NSString*)description calendarFormat: (NSString*)format
++ (id) dateWithString: (NSString*)description calendarFormat: (NSString*)format;

dateWithYear:month:day:hour:minute:second:timeZone:

-+ (id) dateWithYear: (int)year month: (unsigned int)month day: (unsigned int)day hour: (unsigned int)hour minute: (unsigned int)minute second: (unsigned int)second timeZone: (NSTimeZone*)aTimeZone
++ (id) dateWithYear: (int)year month: (unsigned int)month day: (unsigned int)day hour: (unsigned int)hour minute: (unsigned int)minute second: (unsigned int)second timeZone: (NSTimeZone*)aTimeZone;

calendarFormat

-- (NSString*) calendarFormat
+- (NSString*) calendarFormat;

dateByAddingYears:months:days:hours:minutes:seconds:

-- (NSCalendarDate*) dateByAddingYears: (int)year months: (int)month days: (int)day hours: (int)hour minutes: (int)minute seconds: (int)second
+- (NSCalendarDate*) dateByAddingYears: (int)year months: (int)month days: (int)day hours: (int)hour minutes: (int)minute seconds: (int)second;

dayOfCommonEra

-- (int) dayOfCommonEra
+- (int) dayOfCommonEra;

dayOfMonth

-- (int) dayOfMonth
+- (int) dayOfMonth;

dayOfWeek

-- (int) dayOfWeek
+- (int) dayOfWeek;

dayOfYear

-- (int) dayOfYear
+- (int) dayOfYear;

description

-- (NSString*) description
+- (NSString*) description;

descriptionWithCalendarFormat:

-- (NSString*) descriptionWithCalendarFormat: (NSString*)format
+- (NSString*) descriptionWithCalendarFormat: (NSString*)format;

descriptionWithCalendarFormat:

-- (NSString*) descriptionWithCalendarFormat: (NSString*)format
+- (NSString*) descriptionWithCalendarFormat: (NSString*)format;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)locale
+- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

hourOfDay

-- (int) hourOfDay
+- (int) hourOfDay;

initWithString:

-- (id) initWithString: (NSString*)description
+- (id) initWithString: (NSString*)description;

initWithString:calendarFormat:

-- (id) initWithString: (NSString*)description calendarFormat: (NSString*)format
+- (id) initWithString: (NSString*)description calendarFormat: (NSString*)format;

initWithString:calendarFormat:

-- (id) initWithString: (NSString*)description calendarFormat: (NSString*)format
+- (id) initWithString: (NSString*)description calendarFormat: (NSString*)format;

initWithYear:month:day:hour:minute:second:timeZone:

-- (id) initWithYear: (int)year month: (unsigned int)month day: (unsigned int)day hour: (unsigned int)hour minute: (unsigned int)minute second: (unsigned int)second timeZone: (NSTimeZone*)aTimeZone
+- (id) initWithYear: (int)year month: (unsigned int)month day: (unsigned int)day hour: (unsigned int)hour minute: (unsigned int)minute second: (unsigned int)second timeZone: (NSTimeZone*)aTimeZone;

minuteOfHour

-- (int) minuteOfHour
+- (int) minuteOfHour;

monthOfYear

-- (int) monthOfYear
+- (int) monthOfYear;

secondOfMinute

-- (int) secondOfMinute
+- (int) secondOfMinute;

setCalendarFormat:

-- (void) setCalendarFormat: (NSString*)format
+- (void) setCalendarFormat: (NSString*)format;

setTimeZone:

-- (void) setTimeZone: (NSTimeZone*)aTimeZone
+- (void) setTimeZone: (NSTimeZone*)aTimeZone;

timeZone

-- (NSTimeZone*) timeZone
+- (NSTimeZone*) timeZone;

yearOfCommonEra

-- (int) yearOfCommonEra
+- (int) yearOfCommonEra;

years:months:days:hours:minutes:seconds:sinceDate:

-- (void) years: (int*)yearsPointer months: (int*)monthsPointer days: (int*)daysPointer hours: (int*)hoursPointer minutes: (int*)minutesPointer seconds: (int*)secondsPointer sinceDate: (NSCalendarDate*)date
+- (void) years: (int*)yearsPointer months: (int*)monthsPointer days: (int*)daysPointer hours: (int*)hoursPointer minutes: (int*)minutesPointer seconds: (int*)secondsPointer sinceDate: (NSCalendarDate*)date;

diff --git a/Documentation/gsdoc/NSCharacterSet.gsdoc b/Documentation/gsdoc/NSCharacterSet.gsdoc index efb140a9d..cd6fa41e8 100644 --- a/Documentation/gsdoc/NSCharacterSet.gsdoc +++ b/Documentation/gsdoc/NSCharacterSet.gsdoc @@ -1,6 +1,6 @@ - - + + NSCharacterSet diff --git a/Documentation/gsdoc/NSCharacterSet.html b/Documentation/gsdoc/NSCharacterSet.html index 960169a69..c7570d03a 100644 --- a/Documentation/gsdoc/NSCharacterSet.html +++ b/Documentation/gsdoc/NSCharacterSet.html @@ -45,97 +45,97 @@

alphanumericCharacterSet

-+ (NSCharacterSet*) alphanumericCharacterSet
++ (NSCharacterSet*) alphanumericCharacterSet;

characterSetWithBitmapRepresentation:

-+ (NSCharacterSet*) characterSetWithBitmapRepresentation: (NSData*)data
++ (NSCharacterSet*) characterSetWithBitmapRepresentation: (NSData*)data;

characterSetWithCharactersInString:

-+ (NSCharacterSet*) characterSetWithCharactersInString: (NSString*)aString
++ (NSCharacterSet*) characterSetWithCharactersInString: (NSString*)aString;

characterSetWithContentsOfFile:

-+ (NSCharacterSet*) characterSetWithContentsOfFile: (NSString*)path
++ (NSCharacterSet*) characterSetWithContentsOfFile: (NSString*)path;

characterSetWithRange:

-+ (NSCharacterSet*) characterSetWithRange: (NSRange)aRange
++ (NSCharacterSet*) characterSetWithRange: (NSRange)aRange;

controlCharacterSet

-+ (NSCharacterSet*) controlCharacterSet
++ (NSCharacterSet*) controlCharacterSet;

decimalDigitCharacterSet

-+ (NSCharacterSet*) decimalDigitCharacterSet
++ (NSCharacterSet*) decimalDigitCharacterSet;

decomposableCharacterSet

-+ (NSCharacterSet*) decomposableCharacterSet
++ (NSCharacterSet*) decomposableCharacterSet;

illegalCharacterSet

-+ (NSCharacterSet*) illegalCharacterSet
++ (NSCharacterSet*) illegalCharacterSet;

letterCharacterSet

-+ (NSCharacterSet*) letterCharacterSet
++ (NSCharacterSet*) letterCharacterSet;

lowercaseLetterCharacterSet

-+ (NSCharacterSet*) lowercaseLetterCharacterSet
++ (NSCharacterSet*) lowercaseLetterCharacterSet;

nonBaseCharacterSet

-+ (NSCharacterSet*) nonBaseCharacterSet
++ (NSCharacterSet*) nonBaseCharacterSet;

punctuationCharacterSet

-+ (NSCharacterSet*) punctuationCharacterSet
++ (NSCharacterSet*) punctuationCharacterSet;

uppercaseLetterCharacterSet

-+ (NSCharacterSet*) uppercaseLetterCharacterSet
++ (NSCharacterSet*) uppercaseLetterCharacterSet;

whitespaceAndNewlineCharacterSet

-+ (NSCharacterSet*) whitespaceAndNewlineCharacterSet
++ (NSCharacterSet*) whitespaceAndNewlineCharacterSet;

whitespaceCharacterSet

-+ (NSCharacterSet*) whitespaceCharacterSet
++ (NSCharacterSet*) whitespaceCharacterSet;

bitmapRepresentation

-- (NSData*) bitmapRepresentation
+- (NSData*) bitmapRepresentation;

characterIsMember:

-- (BOOL) characterIsMember: (unichar)aCharacter
+- (BOOL) characterIsMember: (unichar)aCharacter;

invertedSet

-- (NSCharacterSet*) invertedSet
+- (NSCharacterSet*) invertedSet;

diff --git a/Documentation/gsdoc/NSCoder.gsdoc b/Documentation/gsdoc/NSCoder.gsdoc index 9b5e69c1a..39a888f2a 100644 --- a/Documentation/gsdoc/NSCoder.gsdoc +++ b/Documentation/gsdoc/NSCoder.gsdoc @@ -1,6 +1,6 @@ - - + + NSCoder diff --git a/Documentation/gsdoc/NSCoder.html b/Documentation/gsdoc/NSCoder.html index 08dc7d558..7bda0156c 100644 --- a/Documentation/gsdoc/NSCoder.html +++ b/Documentation/gsdoc/NSCoder.html @@ -54,142 +54,142 @@

decodeArrayOfObjCType:count:at:

-- (void) decodeArrayOfObjCType: (const char*)itemType count: (unsigned int)count at: (void*)address
+- (void) decodeArrayOfObjCType: (const char*)itemType count: (unsigned int)count at: (void*)address;

decodeBytesWithReturnedLength:

-- (void*) decodeBytesWithReturnedLength: (unsigned int*)numBytes
+- (void*) decodeBytesWithReturnedLength: (unsigned int*)numBytes;

decodeDataObject

-- (NSData*) decodeDataObject
+- (NSData*) decodeDataObject;

decodeObject

-- (id) decodeObject
+- (id) decodeObject;

decodePoint

-- (NSPoint) decodePoint
+- (NSPoint) decodePoint;

decodePropertyList

-- (id) decodePropertyList
+- (id) decodePropertyList;

decodeRect

-- (NSRect) decodeRect
+- (NSRect) decodeRect;

decodeSize

-- (NSSize) decodeSize
+- (NSSize) decodeSize;

decodeValueOfObjCType:

-- (void) decodeValueOfObjCType: (const char*)valueType
+- (void) decodeValueOfObjCType: (const char*)valueType;

decodeValuesOfObjCTypes:

-- (void) decodeValuesOfObjCTypes: (const char*)valueTypes,
+- (void) decodeValuesOfObjCTypes: (const char*)valueTypes,;

encodeArrayOfObjCType:count:at:

-- (void) encodeArrayOfObjCType: (const char*)itemType count: (unsigned int)count at: (const void*)address
+- (void) encodeArrayOfObjCType: (const char*)itemType count: (unsigned int)count at: (const void*)address;

encodeBycopyObject:

-- (void) encodeBycopyObject: (id)object
+- (void) encodeBycopyObject: (id)object;

encodeByrefObject:

-- (void) encodeByrefObject: (id)object
+- (void) encodeByrefObject: (id)object;

encodeBytes:

-- (void) encodeBytes: (void*)address
+- (void) encodeBytes: (void*)address;

encodeConditionalObject:

-- (void) encodeConditionalObject: (id)object
+- (void) encodeConditionalObject: (id)object;

encodeDataObject:

-- (void) encodeDataObject: (NSData*)data
+- (void) encodeDataObject: (NSData*)data;

encodeObject:

-- (void) encodeObject: (id)object
+- (void) encodeObject: (id)object;

encodePoint:

-- (void) encodePoint: (NSPoint)point
+- (void) encodePoint: (NSPoint)point;

encodePropertyList:

-- (void) encodePropertyList: (id)aPropertyList
+- (void) encodePropertyList: (id)aPropertyList;

encodeRect:

-- (void) encodeRect: (NSRect)rect
+- (void) encodeRect: (NSRect)rect;

encodeRootObject:

-- (void) encodeRootObject: (id)rootObject
+- (void) encodeRootObject: (id)rootObject;

encodeSize:

-- (void) encodeSize: (NSSize)size
+- (void) encodeSize: (NSSize)size;

encodeValueOfObjCType:

-- (void) encodeValueOfObjCType: (const char*)valueType
+- (void) encodeValueOfObjCType: (const char*)valueType;

encodeValuesOfObjCTypes:

-- (void) encodeValuesOfObjCTypes: (const char*)valueTypes,
+- (void) encodeValuesOfObjCTypes: (const char*)valueTypes,;

objectZone

-- (NSZone*) objectZone
+- (NSZone*) objectZone;

setObjectZone:

-- (void) setObjectZone: (NSZone*)zone
+- (void) setObjectZone: (NSZone*)zone;

systemVersion

-- (unsigned int) systemVersion
+- (unsigned int) systemVersion;

versionForClassName:

-- (unsigned int) versionForClassName: (NSString*)className
+- (unsigned int) versionForClassName: (NSString*)className;

diff --git a/Documentation/gsdoc/NSConditionLock.gsdoc b/Documentation/gsdoc/NSConditionLock.gsdoc index 3e7d872b5..0ec2f18f6 100644 --- a/Documentation/gsdoc/NSConditionLock.gsdoc +++ b/Documentation/gsdoc/NSConditionLock.gsdoc @@ -1,6 +1,6 @@ - - + + NSConditionLock diff --git a/Documentation/gsdoc/NSConditionLock.html b/Documentation/gsdoc/NSConditionLock.html index 7a17ded64..be5b9644c 100644 --- a/Documentation/gsdoc/NSConditionLock.html +++ b/Documentation/gsdoc/NSConditionLock.html @@ -34,42 +34,42 @@

condition

-- (int) condition
+- (int) condition;

initWithCondition:

-- (id) initWithCondition: (int)condition
+- (id) initWithCondition: (int)condition;

lockBeforeDate:

-- (BOOL) lockBeforeDate: (NSDate*)limit
+- (BOOL) lockBeforeDate: (NSDate*)limit;

lockWhenCondition:

-- (void) lockWhenCondition: (int)condition
+- (void) lockWhenCondition: (int)condition;

lockWhenCondition:beforeDate:

-- (BOOL) lockWhenCondition: (int)condition beforeDate: (NSDate*)limit
+- (BOOL) lockWhenCondition: (int)condition beforeDate: (NSDate*)limit;

tryLock

-- (BOOL) tryLock
+- (BOOL) tryLock;

tryLockWhenCondition:

-- (BOOL) tryLockWhenCondition: (int)condition
+- (BOOL) tryLockWhenCondition: (int)condition;

unlockWithCondition:

-- (void) unlockWithCondition: (int)condition
+- (void) unlockWithCondition: (int)condition;

diff --git a/Documentation/gsdoc/NSConnection.gsdoc b/Documentation/gsdoc/NSConnection.gsdoc index e95016e5f..b93539c2f 100644 --- a/Documentation/gsdoc/NSConnection.gsdoc +++ b/Documentation/gsdoc/NSConnection.gsdoc @@ -1,14 +1,14 @@ - - + + NSConnection - 0.1 - 28 February, 2000 + 0.2 + 4 July, 2000 @@ -17,216 +17,574 @@ Foundation/NSConnection.h NSObject + NSConnection objects are used to manage communications between + objects in different processes, in different machines, or in + different threads. allConnections + Returns an array containing all the NSConnection objects known to + the system. These connections will be valid at the time that the + array was created, but may be invalidated by other threads + before you get to examine the array. connectionWithReceivePort: receivePort + Returns a connection created using + + initWithReceivePort:sendPort: connectionWithRegisteredName: name + host: + hostName +

+ Returns an NSConnection object whose send port is that of the + NSConnection registered under name on the host + hostName. +

+

+ This method calls + + connectionWithRegisteredName:host:usingNameServer: using + the default system name server. +

+
+
+ + connectionWithRegisteredName: + name + host: + host + usingNameServer: + server + +

+ Returns an NSConnection object whose send port is that of the + NSConnection registered under name on host. +

+

+ The nameserver server is used to look up the send + port to be used for the connection. +

+

+ If host is nil or an empty string, + the host is taken to be the local machine. + If it is an asterisk ('*') then the nameserver checks all + hosts on the local subnet (unless the nameserver is one + that only manages local ports). + In the GNUstep implementation, the local host is searched before + any other hosts. +

+

+ If no NSConnection can be found for name and + hosthost, the method returns nil. +

+

+ The returned object has the default NSConnection of the + current thread as its parent (it has the same receive port + as the default connection). +

currentConversation + Not implemented defaultConnection + Returns the default NSConnection for the current thread. +
+ Creates a new instance if necessary. +
+ The default connection has a single NSPort object used for + both sending and receiving - this it can't be used to + connect to a remote process, but can be used to vend objects.
+ + newRegisteringAtName: + name + withRootObject: + anObject + + This used to be the preferred mechanism for creating a GNUstep + server NSConnection ... it is now deprecated. +
+ This is a convenience method for - + + NSConnection *conn; + + conn = [[NSConnection alloc] initWithReceivePort: [NSPort port] + sendPort: nil]; + [conn setRootObject: anObject]; + if ([conn registerName: name] == NO) + { + DESTROY(conn); + } + return conn; + +
+ +
rootProxyForConnectionWithRegisteredName: name + host: + host + This method calls + rootProxyForConnectionWithRegisteredName:host:usingNameServer: + to return a proxy for a root object on the remote connection with + the send port registered under name on host + + rootProxyForConnectionWithRegisteredName: + name + host: + host + usingNameServer: + server + + This method calls + + connectionWithRegisteredName:host:usingNameServer: + to get a connection, then sends it a + rootProxy message to get a proxy for + the root object being vended by the remote connection. + Returns the proxy or nil if it couldn't find + a connection or if the root object for the connection has + not been set. + + + addRequestMode: mode + Adds mode to the run loop modes that the NSConnection + will listen to for incoming messages. addRunLoop: - runloop + loop + Adds loop to the set of run loops that the NSConnection + will listen to for incoming messages. delegate + Returns the delegate of the NSConnection. enableMultipleThreads + Sets the NSConnection configuration so that multiple threads may + use the connection to send requests to the remote connection. +
+ This option is inherited by child connections.
independentConversationQueueing + Returns YES if the NSConnection is configured to + handle remote messages atomically, NO otherwise. +
+ This option is inherited by child connections.
- + initWithReceivePort: - receivePort + recv + sendPort: + send + Initialises an NSConnection with recv and send. +
+ Behavior varies with the port values as follows - + + recv is nil + + The NSConnection is released and the method returns + nil. + + send is nil + + The NSConnection uses recv as the send port as + well as the receive port. + + send is the same as recv + + The NSConnection is usable only for vending objects. + + A connection with the same ports exists + + The new connection is released and the old connection + is retained and returned. + + A connection with the same ports (swapped) exists + + The new connection is initialised as normal, and will + communicate with the old connection. + + +

+ If a connection exists whose send and receive ports are + both the same as the new connections receive port, that + existing connection is deemed to be the parent of the + new connection. The new connection inherits configuration + information from the parent, and the delegate of the + parent has a chance to adjust ythe configuration of the + new connection or veto its creation. +
+ NSConnectionDidInitializeNotification is posted once a new + connection is initialised. +

invalidate + Marks the receiving NSConnection as invalid. +
+ Removes the NSConnections ports from any run loops. +
+ Posts an NSConnectionDidDieNotification. +
+ Invalidates all remote objects and local proxies.
isValid + Returns YES if the connection is invalid, + NO otherwise. localObjects + Returns an array of all the local proxies to objects that + are retained by the remote connection. multipleThreadsEnabled + Returns YES if the connection permits + multiple threads to use it to send requests, + NO otherwise. receivePort + Returns the NSPort object on which incoming messages are + recieved. registerName: name + Simply invokes + registerName:usingNameServer: passing it the default + system nameserver. + + registerName: + name + withNameServer: + server + + Registers the recieve port of the NSConnection as name and + unregisters the previous name (if any). +
+ Returns YES on success, NO on failure. +
+ On failure, the connection remains registered under the + previous name. +
+ Supply nil as name to unregister the + NSConnection. +
+ +
remoteObjects + Returns an array of proxies to all the remote objects known to + the NSConnection. removeRequestMode: mode + Removes mode from the run loop modes used to recieve + incoming messages. removeRunLoop: - runloop + loop + Removes loop from the run loops used to recieve + incoming messages. replyTimeout + Returns the timeout interval used when waiting for a reply to + a request sent on the NSConnection. requestModes + Returns an array of all the run loop modes that the NSConnection + uses when waiting for an incoming request. requestTimeout + Returns the timeout interval used when waiting for a send + operation to complete. rootObject + Returns the object that is made available by this connection + or by its parent (the object is associated with the receive + port). +
+ Returns nil if no root object has been set.
rootProxy + Returns the proxy for the root object of the remote NSConnection. runInNewThread + Removes the NSConnection from the current threads default + run loop, then creates a new thread and runs the NSConnection + in it. sendPort + Returns the port on which the NSConnection sends messages. setDelegate: - anObject + delegate + Sets the NSConnection's delegate (without retaining it). +
+ The delegate is able to control some of the NSConnection's + behavior by implementing methods in an informal protocol.
setIndependentConversationQueueing: flag + Sets whether or not the NSConnection should handle requests + arriving from the remote NSConnection atomically. +
+ By default, this is set to NO ... if set to + YES then any messages arriving while one message + is being dealt with, will be queued. +
+ NB. careful - use of this option can cause deadlocks.
setReplyTimeout: seconds + Sets the time interval that the NSConnection will wait for a + reply to one of its requests before raising an + NSPortTimeoutException. setRequestTimeout: seconds + Sets the time interval that the NSConnection will to send + one of its requests before raising an NSPortTimeoutException. setRootObject: anObject + Sets the root object that is vended by the connection. statistics + Returns an object containing various statistics for the + NSConnection. +
+ On GNUstep the dictionary contains - + + NSConnectionRepliesReceived + + The number of messages replied to by the remote NSConnection + + NSConnectionRepliesSent + + The number of replies sent to the remote NSConnection + + NSConnectionRequestsReceived + + The number of messages recieved from the remote NSConnection + + NSConnectionRequestsSent + + The number of messages sent to the remote NSConnection + + NSConnectionLocalCount + + The number of local objects currently vended + + NSConnectionProxyCount + + The number of remote objects currently in use + +
+ + authenticateComponents: - components + components + withData: + authentication +

+ This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+

+ If the delegate implements this method, the NSConnection will + invoke the method for every message request or reply it receives + from the remote NSConnection. The delegate should use the + authentication data to check all the NSData objects + in the components array (ignoring NSPort objects), + and return YES if they are valid, NO + otherwise. +

+

+ If the method returns NO then an + NSFailedAuthentication exception will be raised. +

+

+ In GNUstep the components array is mutable, allowing + you to replace the NSData objects with your own version. +

+
authenticationDataForComponents: - components + components +

+ This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+

+ If the delegate implements this method, the NSConnection will + invoke the method for every message request ro reply it sends + to the remote NSConnection. The delegate should generate + authentication data by examining all the NSData objects + in the components array (ignoring NSPort objects), + and return the authentication data that can be used by the + remote NSConnection. +

+

+ If the method returns nil then an + NSGenericException exception will be raised. +

+

+ In GNUstep the components array is mutable, allowing + you to replace the NSData objects with your own version. +

+
- + connection: parentConnection shouldMakeNewConnection: newConnnection +

+ This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+

+ If the delegate implements this method, it will be called + whenever a new NSConnection is created that has this + NSConnection as its parent. The delegate may take this + opportunity to adjust the configuration of the new + connection and may return a boolean value to tell the + parent whether the creation of the new connection is to + be permitted or not. +

+
makeNewConnection: newConnection +

+ This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+

+ This is the old equivalent of + + connection:shouldMakeNewConnection + and its use is now deprecated. +

+
diff --git a/Documentation/gsdoc/NSConnection.html b/Documentation/gsdoc/NSConnection.html index 5a7d0b1cc..99790d071 100644 --- a/Documentation/gsdoc/NSConnection.html +++ b/Documentation/gsdoc/NSConnection.html @@ -11,8 +11,8 @@
Richard Frith-Macdonald
-

Version: 0.1

-

Date: 28 February, 2000

+

Version: 0.2

+

Date: 4 July, 2000

NSConnection

NSConnection

Declared in: Foundation/NSConnection.h

@@ -21,235 +21,615 @@


+ NSConnection objects are used to manage communications between + objects in different processes, in different machines, or in + different threads.

allConnections

-+ (NSArray*) allConnections
++ (NSArray*) allConnections;
+ Returns an array containing all the NSConnection objects known to + the system. These connections will be valid at the time that the + array was created, but may be invalidated by other threads + before you get to examine the array.

connectionWithReceivePort:

-+ (NSConnection*) connectionWithReceivePort: (NSPort*)receivePort
++ (NSConnection*) connectionWithReceivePort: (NSPort*)receivePort;
+ + Returns a connection created using + + initWithReceivePort:sendPort: + +
+

connectionWithRegisteredName:host:

++ (NSConnection*) connectionWithRegisteredName: (NSString*)name host: (NSString*)hostName;
+ +

+ + Returns an NSConnection object whose send port is that of the + NSConnection registered under name on the host + hostName. +

+ +

+ + This method calls + + connectionWithRegisteredName:host:usingNameServer: using + the default system name server. +


-

connectionWithRegisteredName:

-+ (NSConnection*) connectionWithRegisteredName: (NSString*)name
+

connectionWithRegisteredName:host:usingNameServer:

++ (NSConnection*) connectionWithRegisteredName: (NSString*)name host: (NSString*)host usingNameServer: (NSPortNameServer*)server;
+ +

+ + Returns an NSConnection object whose send port is that of the + NSConnection registered under name on host. +

+ +

+ + The nameserver server is used to look up the send + port to be used for the connection. +

+ +

+ + If host is nil or an empty string, + the host is taken to be the local machine. + If it is an asterisk ('*') then the nameserver checks all + hosts on the local subnet (unless the nameserver is one + that only manages local ports). + In the GNUstep implementation, the local host is searched before + any other hosts. +

+ +

+ + If no NSConnection can be found for name and + hosthost, the method returns nil. +

+ +

+ + The returned object has the default NSConnection of the + current thread as its parent (it has the same receive port + as the default connection). +


currentConversation

-+ (id) currentConversation
++ (id) currentConversation;
+ Not implemented

defaultConnection

-+ (NSConnection*) defaultConnection
++ (NSConnection*) defaultConnection;
+ + Returns the default NSConnection for the current thread. +
+ Creates a new instance if necessary. +
+ The default connection has a single NSPort object used for + both sending and receiving - this it can't be used to + connect to a remote process, but can be used to vend objects. + +
+

newRegisteringAtName:withRootObject:

++ (NSConnection*) newRegisteringAtName: (NSString*)name withRootObject: (id)anObject;
+Standards: GNUstep NotMacOS-X NotOpenStep
+ + This used to be the preferred mechanism for creating a GNUstep + server NSConnection ... it is now deprecated. +
+ This is a convenience method for - + example +
+
+  NSConnection	*conn;
+
+  conn = [[NSConnection alloc] initWithReceivePort: [NSPort port]
+					  sendPort: nil];
+  [conn setRootObject: anObject];
+  if ([conn registerName: name] == NO)
+    {
+      DESTROY(conn);
+    }
+  return conn;
+	    
+

-

rootProxyForConnectionWithRegisteredName:

-+ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)name
+

rootProxyForConnectionWithRegisteredName:host:

++ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)name host: (NSString*)host;
+ + This method calls + rootProxyForConnectionWithRegisteredName:host:usingNameServer: + to return a proxy for a root object on the remote connection with + the send port registered under name on host + +
+

rootProxyForConnectionWithRegisteredName:host:usingNameServer:

++ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)name host: (NSString*)host usingNameServer: (NSPortNameServer*)server;
+Standards: GNUstep MacOS-X NotOpenStep
+ + This method calls + + connectionWithRegisteredName:host:usingNameServer: + to get a connection, then sends it a + rootProxy message to get a proxy for + the root object being vended by the remote connection. + Returns the proxy or nil if it couldn't find + a connection or if the root object for the connection has + not been set. + +
+

addRequestMode:

+- (void) addRequestMode: (NSString*)mode;
+ + Adds mode to the run loop modes that the NSConnection + will listen to for incoming messages. + +
+

addRunLoop:

+- (void) addRunLoop: (NSRunLoop*)loop;
+ + Adds loop to the set of run loops that the NSConnection + will listen to for incoming messages. + +
+

delegate

+- (id) delegate;
+ + Returns the delegate of the NSConnection. + +
+

enableMultipleThreads

+- (void) enableMultipleThreads;
+ + Sets the NSConnection configuration so that multiple threads may + use the connection to send requests to the remote connection. +
+ This option is inherited by child connections. + +
+

independentConversationQueueing

+- (BOOL) independentConversationQueueing;
+ + Returns YES if the NSConnection is configured to + handle remote messages atomically, NO otherwise. +
+ This option is inherited by child connections. + +
+

initWithReceivePort:sendPort:

+This is the designated initialiser
+- (id) initWithReceivePort: (NSPort*)recv sendPort: (NSPort*)send;
+ + Initialises an NSConnection with recv and send. +
+ Behavior varies with the port values as follows - +
+
recv is nil +
+ The NSConnection is released and the method returns + nil. + +
send is nil +
+ The NSConnection uses recv as the send port as + well as the receive port. + +
send is the same as recv +
+ The NSConnection is usable only for vending objects. + +
A connection with the same ports exists +
+ The new connection is released and the old connection + is retained and returned. + +
A connection with the same ports (swapped) exists +
+ The new connection is initialised as normal, and will + communicate with the old connection. + +
+ +

+ + If a connection exists whose send and receive ports are + both the same as the new connections receive port, that + existing connection is deemed to be the parent of the + new connection. The new connection inherits configuration + information from the parent, and the delegate of the + parent has a chance to adjust ythe configuration of the + new connection or veto its creation. +
+ NSConnectionDidInitializeNotification is posted once a new + connection is initialised. +


-

addRequestMode:

-- (void) addRequestMode: (NSString*)mode
+

invalidate

+- (void) invalidate;
+ + Marks the receiving NSConnection as invalid. +
+ Removes the NSConnections ports from any run loops. +
+ Posts an NSConnectionDidDieNotification. +
+ Invalidates all remote objects and local proxies. + +
+

isValid

+- (BOOL) isValid;
+ + Returns YES if the connection is invalid, + NO otherwise. + +
+

localObjects

+- (NSArray*) localObjects;
+ + Returns an array of all the local proxies to objects that + are retained by the remote connection. + +
+

multipleThreadsEnabled

+- (BOOL) multipleThreadsEnabled;
+ + Returns YES if the connection permits + multiple threads to use it to send requests, + NO otherwise. + +
+

receivePort

+- (NSPort*) receivePort;
+ + Returns the NSPort object on which incoming messages are + recieved. + +
+

registerName:

+- (BOOL) registerName: (NSString*)name;
+ + Simply invokes + registerName:usingNameServer: passing it the default + system nameserver. + +
+

registerName:withNameServer:

+- (BOOL) registerName: (NSString*)name withNameServer: (NSPortNameServer*)server;
+Standards: GNUstep MacOS-X NotOpenStep
+ + Registers the recieve port of the NSConnection as name and + unregisters the previous name (if any). +
+ Returns YES on success, NO on failure. +
+ On failure, the connection remains registered under the + previous name. +
+ Supply nil as name to unregister the + NSConnection. + +
+

remoteObjects

+- (NSArray*) remoteObjects;
+ + Returns an array of proxies to all the remote objects known to + the NSConnection. + +
+

removeRequestMode:

+- (void) removeRequestMode: (NSString*)mode;
+ + Removes mode from the run loop modes used to recieve + incoming messages. + +
+

removeRunLoop:

+- (void) removeRunLoop: (NSRunLoop*)loop;
+ + Removes loop from the run loops used to recieve + incoming messages. + +
+

replyTimeout

+- (NSTimeInterval) replyTimeout;
+ + Returns the timeout interval used when waiting for a reply to + a request sent on the NSConnection. + +
+

requestModes

+- (NSArray*) requestModes;
+ + Returns an array of all the run loop modes that the NSConnection + uses when waiting for an incoming request. + +
+

requestTimeout

+- (NSTimeInterval) requestTimeout;
+ + Returns the timeout interval used when waiting for a send + operation to complete. + +
+

rootObject

+- (id) rootObject;
+ + Returns the object that is made available by this connection + or by its parent (the object is associated with the receive + port). +
+ Returns nil if no root object has been set. + +
+

rootProxy

+- (NSDistantObject*) rootProxy;
+ + Returns the proxy for the root object of the remote NSConnection. + +
+

runInNewThread

+- (void) runInNewThread;
+ + Removes the NSConnection from the current threads default + run loop, then creates a new thread and runs the NSConnection + in it. + +
+

sendPort

+- (NSPort*) sendPort;
+ + Returns the port on which the NSConnection sends messages. + +
+

setDelegate:

+- (void) setDelegate: (id)delegate;
+ + Sets the NSConnection's delegate (without retaining it). +
+ The delegate is able to control some of the NSConnection's + behavior by implementing methods in an informal protocol. + +
+

setIndependentConversationQueueing:

+- (void) setIndependentConversationQueueing: (BOOL)flag;
+ + Sets whether or not the NSConnection should handle requests + arriving from the remote NSConnection atomically. +
+ By default, this is set to NO ... if set to + YES then any messages arriving while one message + is being dealt with, will be queued. +
+ NB. careful - use of this option can cause deadlocks. + +
+

setReplyTimeout:

+- (void) setReplyTimeout: (NSTimeInterval)seconds;
+ + Sets the time interval that the NSConnection will wait for a + reply to one of its requests before raising an + NSPortTimeoutException. + +
+

setRequestTimeout:

+- (void) setRequestTimeout: (NSTimeInterval)seconds;
+ + Sets the time interval that the NSConnection will to send + one of its requests before raising an NSPortTimeoutException. + +
+

setRootObject:

+- (void) setRootObject: (id)anObject;
+ + Sets the root object that is vended by the connection. + +
+

statistics

+- (NSDictionary*) statistics;
+ + Returns an object containing various statistics for the + NSConnection. +
+ On GNUstep the dictionary contains - +
+
NSConnectionRepliesReceived +
+ The number of messages replied to by the remote NSConnection + +
NSConnectionRepliesSent +
+ The number of replies sent to the remote NSConnection + +
NSConnectionRequestsReceived +
+ The number of messages recieved from the remote NSConnection + +
NSConnectionRequestsSent +
+ The number of messages sent to the remote NSConnection + +
NSConnectionLocalCount +
+ The number of local objects currently vended + +
NSConnectionProxyCount +
+ The number of remote objects currently in use + +

-

addRunLoop:

-- (void) addRunLoop: (NSRunLoop*)runloop
+

authenticateComponents:withData:

+- (BOOL) authenticateComponents: (NSMutableArray*)components withData: (NSData*)authentication;
+Standards: GNUstep MacOS-X NotOpenStep
+ +

+ + This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+ +

+ + If the delegate implements this method, the NSConnection will + invoke the method for every message request or reply it receives + from the remote NSConnection. The delegate should use the + authentication data to check all the NSData objects + in the components array (ignoring NSPort objects), + and return YES if they are valid, NO + otherwise. +

+ +

+ + If the method returns NO then an + NSFailedAuthentication exception will be raised. +

+ +

+ + In GNUstep the components array is mutable, allowing + you to replace the NSData objects with your own version. +


-

delegate

-- (id) delegate
+

authenticationDataForComponents:

+- (NSData*) authenticationDataForComponents: (NSMutableArray*)components;
+Standards: GNUstep MacOS-X NotOpenStep
+ +

+ + This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+ +

+ + If the delegate implements this method, the NSConnection will + invoke the method for every message request ro reply it sends + to the remote NSConnection. The delegate should generate + authentication data by examining all the NSData objects + in the components array (ignoring NSPort objects), + and return the authentication data that can be used by the + remote NSConnection. +

+ +

+ + If the method returns nil then an + NSGenericException exception will be raised. +

+ +

+ + In GNUstep the components array is mutable, allowing + you to replace the NSData objects with your own version. +


-

enableMultipleThreads

-- (void) enableMultipleThreads
+

connection:shouldMakeNewConnection:

+- (BOOL) connection: (NSConnection*)parentConnection shouldMakeNewConnection: (NSConnection*)newConnnection;
+Standards: GNUstep MacOS-X NotOpenStep
+ +

+ + This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

+ +

+ + If the delegate implements this method, it will be called + whenever a new NSConnection is created that has this + NSConnection as its parent. The delegate may take this + opportunity to adjust the configuration of the new + connection and may return a boolean value to tell the + parent whether the creation of the new connection is to + be permitted or not. +


-

independentConversationQueueing

-- (BOOL) independentConversationQueueing
+

makeNewConnection:

+- (BOOL) makeNewConnection: (NSConnection*)newConnection;
+Standards: OpenStep
- -
-

initWithReceivePort:

-- (id) initWithReceivePort: (NSPort*)receivePort
+

- -


-

invalidate

-- (void) invalidate
+ This is not an NSConnection method, but is a method that may + be implemented by the delegate of an NSConnection object. +

- -
-

isValid

-- (BOOL) isValid
+

- -


-

localObjects

-- (NSArray*) localObjects
- - -
-

multipleThreadsEnabled

-- (BOOL) multipleThreadsEnabled
- - -
-

receivePort

-- (NSPort*) receivePort
- - -
-

registerName:

-- (BOOL) registerName: (NSString*)name
- - -
-

remoteObjects

-- (NSArray*) remoteObjects
- - -
-

removeRequestMode:

-- (void) removeRequestMode: (NSString*)mode
- - -
-

removeRunLoop:

-- (void) removeRunLoop: (NSRunLoop*)runloop
- - -
-

replyTimeout

-- (NSTimeInterval) replyTimeout
- - -
-

requestModes

-- (NSArray*) requestModes
- - -
-

requestTimeout

-- (NSTimeInterval) requestTimeout
- - -
-

rootObject

-- (id) rootObject
- - -
-

rootProxy

-- (NSDistantObject*) rootProxy
- - -
-

runInNewThread

-- (void) runInNewThread
- - -
-

sendPort

-- (NSPort*) sendPort
- - -
-

setDelegate:

-- (void) setDelegate: (id)anObject
- - -
-

setIndependentConversationQueueing:

-- (void) setIndependentConversationQueueing: (BOOL)flag
- - -
-

setReplyTimeout:

-- (void) setReplyTimeout: (NSTimeInterval)seconds
- - -
-

setRequestTimeout:

-- (void) setRequestTimeout: (NSTimeInterval)seconds
- - -
-

setRootObject:

-- (void) setRootObject: (id)anObject
- - -
-

statistics

-- (NSDictionary*) statistics
- - -
-

authenticateComponents:

-- (BOOL) authenticateComponents: (NSArray*)components
- - -
-

authenticationDataForComponents:

-- (NSData*) authenticationDataForComponents: (NSArray*)components
- - -
-

connection:shouldMakeNewConnection:

-- (BOOL) connection: (NSConnection*)parentConnection shouldMakeNewConnection: (NSConnection*)newConnnection
- - -
-

makeNewConnection:

-- (BOOL) makeNewConnection: (NSConnection*)newConnection
+ This is the old equivalent of + + connection:shouldMakeNewConnection + and its use is now deprecated. +


diff --git a/Documentation/gsdoc/NSCountedSet.gsdoc b/Documentation/gsdoc/NSCountedSet.gsdoc index 1d02d6a5d..0e3ba66c5 100644 --- a/Documentation/gsdoc/NSCountedSet.gsdoc +++ b/Documentation/gsdoc/NSCountedSet.gsdoc @@ -1,6 +1,6 @@ - - + + NSCountedSet diff --git a/Documentation/gsdoc/NSCountedSet.html b/Documentation/gsdoc/NSCountedSet.html index fe817136b..043bb11f4 100644 --- a/Documentation/gsdoc/NSCountedSet.html +++ b/Documentation/gsdoc/NSCountedSet.html @@ -50,7 +50,7 @@

addObject:

-- (void) addObject: (id)anObject
+- (void) addObject: (id)anObject;
Adds an object to the set. If the set already contains an object equal to the specified object (as determined by the [-isEqual:] @@ -59,19 +59,19 @@

allObjects

-- (NSArray*) allObjects
+- (NSArray*) allObjects;
Returns an array containing all the objects stored in the set.

count

-- (unsigned int) count
+- (unsigned int) count;
Returns the number of objects stored in the set.

countForObject:

-- (unsigned int) countForObject: (id)anObject
+- (unsigned int) countForObject: (id)anObject;
Returns the number of times that an object that is equal to the specified object (as determined byt the [-isEqual:] method) has @@ -79,7 +79,7 @@

initWithArray:

-- (id) initWithArray: (NSArray*)anArray
+- (id) initWithArray: (NSArray*)anArray;
Initialises a newly allocated set by adding all the objects in the supplied array to the set. Each object is added to @@ -87,28 +87,28 @@

initWithCapacity:

-- (id) initWithCapacity: (unsigned int)numItems
+- (id) initWithCapacity: (unsigned int)numItems;
Initialises a newly allocated set to contain no objects but to have space available to hold the specified number of items.

initWithSet:

-- (id) initWithSet: (NSSet*)aSet
+- (id) initWithSet: (NSSet*)aSet;
Initialises a newly allocated set by adding all the objects in the supplied set.

objectEnumerator

-- (NSEnumerator*) objectEnumerator
+- (NSEnumerator*) objectEnumerator;
Returns an NSEnumerator object able to step through all the objects in the set.

purge:

-- (void) purge: (int)count
+- (void) purge: (int)count;
Standards: NotOpenStep NotMacOS-X

@@ -127,7 +127,7 @@ Standards: NotOpenStep NotMacOS-X


removeObject:

-- (void) removeObject: (id)anObject
+- (void) removeObject: (id)anObject;
Decrements the count of the number of times that the specified object (or an object qequal to it as determined by the @@ -136,7 +136,7 @@ Standards: NotOpenStep NotMacOS-X

unique:

-- (id) unique: (id)anObject
+- (id) unique: (id)anObject;
Standards: NotOpenStep NotMacOS-X

diff --git a/Documentation/gsdoc/NSDate.gsdoc b/Documentation/gsdoc/NSDate.gsdoc index 9cdb10bb6..c00eca156 100644 --- a/Documentation/gsdoc/NSDate.gsdoc +++ b/Documentation/gsdoc/NSDate.gsdoc @@ -1,6 +1,6 @@ - - + + NSDate diff --git a/Documentation/gsdoc/NSDate.html b/Documentation/gsdoc/NSDate.html index 48a8aadef..95a0d27ae 100644 --- a/Documentation/gsdoc/NSDate.html +++ b/Documentation/gsdoc/NSDate.html @@ -52,132 +52,132 @@


timeIntervalSinceReferenceDate

-+ (NSTimeInterval) timeIntervalSinceReferenceDate
++ (NSTimeInterval) timeIntervalSinceReferenceDate;

date

-+ (id) date
++ (id) date;

dateWithString:

-+ (id) dateWithString: (NSString*)aString
++ (id) dateWithString: (NSString*)aString;

dateWithTimeIntervalSinceNow:

-+ (id) dateWithTimeIntervalSinceNow: (NSTimeInterval)seconds
++ (id) dateWithTimeIntervalSinceNow: (NSTimeInterval)seconds;

dateWithTimeIntervalSince1970:

-+ (id) dateWithTimeIntervalSince1970: (NSTimeInterval)seconds
++ (id) dateWithTimeIntervalSince1970: (NSTimeInterval)seconds;

dateWithTimeIntervalSinceReferenceDate:

-+ (id) dateWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds
++ (id) dateWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds;

distantFuture

-+ (id) distantFuture
++ (id) distantFuture;

distantPast

-+ (id) distantPast
++ (id) distantPast;

addTimeInterval:

-- (id) addTimeInterval: (NSTimeInterval)seconds
+- (id) addTimeInterval: (NSTimeInterval)seconds;

compare:

-- (NSComparisonResult) compare: (NSDate*)anotherDate
+- (NSComparisonResult) compare: (NSDate*)anotherDate;

dateWithCalendarFormat:

-- (NSCalendarDate*) dateWithCalendarFormat: (NSString*)formatString
+- (NSCalendarDate*) dateWithCalendarFormat: (NSString*)formatString;

description

-- (NSString*) description
+- (NSString*) description;

descriptionWithCalendarFormat:timeZone:locale:

-- (NSString*) descriptionWithCalendarFormat: (NSString*)formatString timeZone: (NSTimeZone*)aTimeZone locale: (NSDictionary*)localeDictionary
+- (NSString*) descriptionWithCalendarFormat: (NSString*)formatString timeZone: (NSTimeZone*)aTimeZone locale: (NSDictionary*)localeDictionary;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)localeDictionary
+- (NSString*) descriptionWithLocale: (NSDictionary*)localeDictionary;

earlierDate:

-- (NSDate*) earlierDate: (NSDate*)anotherDate
+- (NSDate*) earlierDate: (NSDate*)anotherDate;

init

-- (id) init
+- (id) init;

initWithString:

-- (id) initWithString: (NSString*)description
+- (id) initWithString: (NSString*)description;

initWithTimeInterval:sinceDate:

-- (id) initWithTimeInterval: (NSTimeInterval)seconds sinceDate: (NSDate*)anotherDate
+- (id) initWithTimeInterval: (NSTimeInterval)seconds sinceDate: (NSDate*)anotherDate;

initWithTimeIntervalSinceNow:

-- (id) initWithTimeIntervalSinceNow: (NSTimeInterval)seconds
+- (id) initWithTimeIntervalSinceNow: (NSTimeInterval)seconds;

initWithTimeIntervalSinceReferenceDate:

-- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds
+- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds;

isEqualToDate:

-- (BOOL) isEqualToDate: (NSDate*)anotherDate
+- (BOOL) isEqualToDate: (NSDate*)anotherDate;

laterDate:

-- (NSDate*) laterDate: (NSDate*)anotherDate
+- (NSDate*) laterDate: (NSDate*)anotherDate;

timeIntervalSinceDate:

-- (NSTimeInterval) timeIntervalSinceDate: (NSDate*)anotherDate
+- (NSTimeInterval) timeIntervalSinceDate: (NSDate*)anotherDate;

timeIntervalSince1970

-- (NSTimeInterval) timeIntervalSince1970
+- (NSTimeInterval) timeIntervalSince1970;

timeIntervalSinceNow

-- (NSTimeInterval) timeIntervalSinceNow
+- (NSTimeInterval) timeIntervalSinceNow;

timeIntervalSinceReferenceDate

-- (NSTimeInterval) timeIntervalSinceReferenceDate
+- (NSTimeInterval) timeIntervalSinceReferenceDate;

diff --git a/Documentation/gsdoc/NSDateFormatter.gsdoc b/Documentation/gsdoc/NSDateFormatter.gsdoc index dac5db84b..0aa772f86 100644 --- a/Documentation/gsdoc/NSDateFormatter.gsdoc +++ b/Documentation/gsdoc/NSDateFormatter.gsdoc @@ -1,6 +1,6 @@ - - + + NSDateFormatter diff --git a/Documentation/gsdoc/NSDateFormatter.html b/Documentation/gsdoc/NSDateFormatter.html index 9abfb1f9f..4d590745c 100644 --- a/Documentation/gsdoc/NSDateFormatter.html +++ b/Documentation/gsdoc/NSDateFormatter.html @@ -29,17 +29,17 @@

allowsNaturalLanguage

-- (BOOL) allowsNaturalLanguage
+- (BOOL) allowsNaturalLanguage;

dateFormat

-- (NSString*) dateFormat
+- (NSString*) dateFormat;

initWithDateFormat:allowNaturalLanguage:

-- (id) initWithDateFormat: (NSString*)format allowNaturalLanguage: (BOOL)flag
+- (id) initWithDateFormat: (NSString*)format allowNaturalLanguage: (BOOL)flag;

diff --git a/Documentation/gsdoc/NSDecimalNumber.gsdoc b/Documentation/gsdoc/NSDecimalNumber.gsdoc index 4272f00e6..c3fe704c2 100644 --- a/Documentation/gsdoc/NSDecimalNumber.gsdoc +++ b/Documentation/gsdoc/NSDecimalNumber.gsdoc @@ -1,6 +1,6 @@ - - + + NSDecimalNumber diff --git a/Documentation/gsdoc/NSDecimalNumber.html b/Documentation/gsdoc/NSDecimalNumber.html index 1f313dd3b..343dc4b4a 100644 --- a/Documentation/gsdoc/NSDecimalNumber.html +++ b/Documentation/gsdoc/NSDecimalNumber.html @@ -57,167 +57,167 @@

decimalNumberWithDecimal:

-+ (NSDecimalNumber*) decimalNumberWithDecimal: (NSDecimal)decimal
++ (NSDecimalNumber*) decimalNumberWithDecimal: (NSDecimal)decimal;

decimalNumberWithMantissa:exponent:isNegative:

-+ (NSDecimalNumber*) decimalNumberWithMantissa: (unsigned long long)mantissa exponent: (short)exponent isNegative: (BOOL)isNegative
++ (NSDecimalNumber*) decimalNumberWithMantissa: (unsigned long long)mantissa exponent: (short)exponent isNegative: (BOOL)isNegative;

decimalNumberWithString:

-+ (NSDecimalNumber*) decimalNumberWithString: (NSString*)numericString
++ (NSDecimalNumber*) decimalNumberWithString: (NSString*)numericString;

decimalNumberWithString:

-+ (NSDecimalNumber*) decimalNumberWithString: (NSString*)numericString
++ (NSDecimalNumber*) decimalNumberWithString: (NSString*)numericString;

defaultBehavior

-+ (id<NSDecimalNumberBehaviors>) defaultBehavior
++ (id<NSDecimalNumberBehaviors>) defaultBehavior;

maximumDecimalNumber

-+ (NSDecimalNumber*) maximumDecimalNumber
++ (NSDecimalNumber*) maximumDecimalNumber;

minimumDecimalNumber

-+ (NSDecimalNumber*) minimumDecimalNumber
++ (NSDecimalNumber*) minimumDecimalNumber;

notANumber

-+ (NSDecimalNumber*) notANumber
++ (NSDecimalNumber*) notANumber;

one

-+ (NSDecimalNumber*) one
++ (NSDecimalNumber*) one;

setDefaultBehavior:

-+ (void) setDefaultBehavior: (id<NSDecimalNumberBehaviors>)behavior
++ (void) setDefaultBehavior: (id<NSDecimalNumberBehaviors>)behavior;

zero

-+ (NSDecimalNumber*) zero
++ (NSDecimalNumber*) zero;

compare:

-- (NSComparisonResult) compare: (NSNumber*)decimalNumber
+- (NSComparisonResult) compare: (NSNumber*)decimalNumber;

decimalNumberByAdding:

-- (NSDecimalNumber*) decimalNumberByAdding: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberByAdding: (NSDecimalNumber*)decimalNumber;

decimalNumberByAdding:

-- (NSDecimalNumber*) decimalNumberByAdding: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberByAdding: (NSDecimalNumber*)decimalNumber;

decimalNumberByDividingBy:

-- (NSDecimalNumber*) decimalNumberByDividingBy: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberByDividingBy: (NSDecimalNumber*)decimalNumber;

decimalNumberByDividingBy:

-- (NSDecimalNumber*) decimalNumberByDividingBy: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberByDividingBy: (NSDecimalNumber*)decimalNumber;

decimalNumberByMultiplyingBy:

-- (NSDecimalNumber*) decimalNumberByMultiplyingBy: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberByMultiplyingBy: (NSDecimalNumber*)decimalNumber;

decimalNumberByMultiplyingBy:

-- (NSDecimalNumber*) decimalNumberByMultiplyingBy: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberByMultiplyingBy: (NSDecimalNumber*)decimalNumber;

decimalNumberByMultiplyingByPowerOf10:

-- (NSDecimalNumber*) decimalNumberByMultiplyingByPowerOf10: (short)power
+- (NSDecimalNumber*) decimalNumberByMultiplyingByPowerOf10: (short)power;

decimalNumberByMultiplyingByPowerOf10:withBehavior:

-- (NSDecimalNumber*) decimalNumberByMultiplyingByPowerOf10: (short)power withBehavior: (id<NSDecimalNumberBehaviors>)behavior
+- (NSDecimalNumber*) decimalNumberByMultiplyingByPowerOf10: (short)power withBehavior: (id<NSDecimalNumberBehaviors>)behavior;

decimalNumberByRaisingToPower:

-- (NSDecimalNumber*) decimalNumberByRaisingToPower: (unsigned int)power
+- (NSDecimalNumber*) decimalNumberByRaisingToPower: (unsigned int)power;

decimalNumberByRaisingToPower:withBehavior:

-- (NSDecimalNumber*) decimalNumberByRaisingToPower: (unsigned int)power withBehavior: (id<NSDecimalNumberBehaviors>)behavior
+- (NSDecimalNumber*) decimalNumberByRaisingToPower: (unsigned int)power withBehavior: (id<NSDecimalNumberBehaviors>)behavior;

decimalNumberByRoundingAccordingToBehavior:

-- (NSDecimalNumber*) decimalNumberByRoundingAccordingToBehavior: (id<NSDecimalNumberBehaviors>)behavior
+- (NSDecimalNumber*) decimalNumberByRoundingAccordingToBehavior: (id<NSDecimalNumberBehaviors>)behavior;

decimalNumberBySubtracting:

-- (NSDecimalNumber*) decimalNumberBySubtracting: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberBySubtracting: (NSDecimalNumber*)decimalNumber;

decimalNumberBySubtracting:

-- (NSDecimalNumber*) decimalNumberBySubtracting: (NSDecimalNumber*)decimalNumber
+- (NSDecimalNumber*) decimalNumberBySubtracting: (NSDecimalNumber*)decimalNumber;

decimalValue

-- (NSDecimal) decimalValue
+- (NSDecimal) decimalValue;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)locale
+- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

doubleValue

-- (double) doubleValue
+- (double) doubleValue;

initWithDecimal:

-- (NSDecimalNumber*) initWithDecimal: (NSDecimal)decimal
+- (NSDecimalNumber*) initWithDecimal: (NSDecimal)decimal;

initWithMantissa:exponent:isNegative:

-- (NSDecimalNumber*) initWithMantissa: (unsigned long long)mantissa exponent: (short)exponent isNegative: (BOOL)isNegative
+- (NSDecimalNumber*) initWithMantissa: (unsigned long long)mantissa exponent: (short)exponent isNegative: (BOOL)isNegative;

initWithString:

-- (NSDecimalNumber*) initWithString: (NSString*)numericString
+- (NSDecimalNumber*) initWithString: (NSString*)numericString;

initWithString:

-- (NSDecimalNumber*) initWithString: (NSString*)numericString
+- (NSDecimalNumber*) initWithString: (NSString*)numericString;

objCType

-- (const char*) objCType
+- (const char*) objCType;

diff --git a/Documentation/gsdoc/NSDecimalNumberHandler.gsdoc b/Documentation/gsdoc/NSDecimalNumberHandler.gsdoc index a7b0b12f3..eb6763c5f 100644 --- a/Documentation/gsdoc/NSDecimalNumberHandler.gsdoc +++ b/Documentation/gsdoc/NSDecimalNumberHandler.gsdoc @@ -1,6 +1,6 @@ - - + + NSDecimalNumberHandler diff --git a/Documentation/gsdoc/NSDecimalNumberHandler.html b/Documentation/gsdoc/NSDecimalNumberHandler.html index 2affcc324..a6eae8993 100644 --- a/Documentation/gsdoc/NSDecimalNumberHandler.html +++ b/Documentation/gsdoc/NSDecimalNumberHandler.html @@ -29,17 +29,17 @@

defaultDecimalNumberHandler

-+ (id) defaultDecimalNumberHandler
++ (id) defaultDecimalNumberHandler;

decimalNumberHandlerWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:

-+ (id) decimalNumberHandlerWithRoundingMode: (NSRoundingMode)roundingMode scale: (short)scale raiseOnExactness: (BOOL)raiseOnExactness raiseOnOverflow: (BOOL)raiseOnOverflow raiseOnUnderflow: (BOOL)raiseOnUnderflow raiseOnDivideByZero: (BOOL)raiseOnDivideByZero
++ (id) decimalNumberHandlerWithRoundingMode: (NSRoundingMode)roundingMode scale: (short)scale raiseOnExactness: (BOOL)raiseOnExactness raiseOnOverflow: (BOOL)raiseOnOverflow raiseOnUnderflow: (BOOL)raiseOnUnderflow raiseOnDivideByZero: (BOOL)raiseOnDivideByZero;

initWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:

-- (id) initWithRoundingMode: (NSRoundingMode)roundingMode scale: (short)scale raiseOnExactness: (BOOL)raiseOnExactness raiseOnOverflow: (BOOL)raiseOnOverflow raiseOnUnderflow: (BOOL)raiseOnUnderflow raiseOnDivideByZero: (BOOL)raiseOnDivideByZero
+- (id) initWithRoundingMode: (NSRoundingMode)roundingMode scale: (short)scale raiseOnExactness: (BOOL)raiseOnExactness raiseOnOverflow: (BOOL)raiseOnOverflow raiseOnUnderflow: (BOOL)raiseOnUnderflow raiseOnDivideByZero: (BOOL)raiseOnDivideByZero;

diff --git a/Documentation/gsdoc/NSDeserializer.gsdoc b/Documentation/gsdoc/NSDeserializer.gsdoc index f55c34a6d..c6709cc97 100644 --- a/Documentation/gsdoc/NSDeserializer.gsdoc +++ b/Documentation/gsdoc/NSDeserializer.gsdoc @@ -1,6 +1,6 @@ - - + + NSDeserializer diff --git a/Documentation/gsdoc/NSDeserializer.html b/Documentation/gsdoc/NSDeserializer.html index 5c4d35233..ad4ca4cb9 100644 --- a/Documentation/gsdoc/NSDeserializer.html +++ b/Documentation/gsdoc/NSDeserializer.html @@ -30,22 +30,22 @@

deserializePropertyListFromData:atCursor:mutableContainers:

-+ (id) deserializePropertyListFromData: (NSData*)data atCursor: (unsigned int*)cursor mutableContainers: (BOOL)mutable
++ (id) deserializePropertyListFromData: (NSData*)data atCursor: (unsigned int*)cursor mutableContainers: (BOOL)mutable;

deserializePropertyListFromData:mutableContainers:

-+ (id) deserializePropertyListFromData: (NSData*)serialization mutableContainers: (BOOL)mutable
++ (id) deserializePropertyListFromData: (NSData*)serialization mutableContainers: (BOOL)mutable;

deserializePropertyListLazilyFromData:atCursor:length:mutableContainers:

-+ (id) deserializePropertyListLazilyFromData: (NSData*)data atCursor: (unsigned int*)cursor length: (unsigned int)length mutableContainers: (BOOL)mutable
++ (id) deserializePropertyListLazilyFromData: (NSData*)data atCursor: (unsigned int*)cursor length: (unsigned int)length mutableContainers: (BOOL)mutable;

uniquing:

-+ (void) uniquing: (BOOL)flag
++ (void) uniquing: (BOOL)flag;
Standards: GNUstep NotOpenStep NotMacOS-X
This method turns on/off uniquing of strings as they are diff --git a/Documentation/gsdoc/NSDictionary.gsdoc b/Documentation/gsdoc/NSDictionary.gsdoc index 307b9d16f..89776efd4 100644 --- a/Documentation/gsdoc/NSDictionary.gsdoc +++ b/Documentation/gsdoc/NSDictionary.gsdoc @@ -1,6 +1,6 @@ - - + + NSDictionary diff --git a/Documentation/gsdoc/NSDictionary.html b/Documentation/gsdoc/NSDictionary.html index cf3d65f18..78429e23b 100644 --- a/Documentation/gsdoc/NSDictionary.html +++ b/Documentation/gsdoc/NSDictionary.html @@ -65,38 +65,38 @@

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

dictionary

-+ (id) dictionary
++ (id) dictionary;
Returns an empty dictionary.

dictionaryWithContentsOfFile:

-+ (id) dictionaryWithContentsOfFile: (NSString*)path
++ (id) dictionaryWithContentsOfFile: (NSString*)path;
Returns a dictionary using the file located at path. The file must be a property list containing a dictionary as its root object.

dictionaryWithDictionary:

-+ (id) dictionaryWithDictionary: (NSDictionary*)otherDictionary
++ (id) dictionaryWithDictionary: (NSDictionary*)otherDictionary;
Returns a newly created dictionary with the keys and objects of otherDictionary. (The keys and objects are not copied.)

dictionaryWithObject:forKey:

-+ (id) dictionaryWithObject: (id)anObject forKey: (id)aKey
++ (id) dictionaryWithObject: (id)anObject forKey: (id)aKey;
Returns a dictionary containing only one object (anObject) which is associated with aKey.

dictionaryWithObjects:forKey:

-+ (id) dictionaryWithObjects: (NSArray*)objects forKey: (NSArray*)keys
++ (id) dictionaryWithObjects: (NSArray*)objects forKey: (NSArray*)keys;
Returns a dictionary created using the given objects and keys. The two arrays must have the same size. @@ -104,14 +104,14 @@

dictionaryWithObjects:forKeys:count:

-+ (id) dictionaryWithObjects: (id*)objects forKeys: (id*)keys count: (unsigned int)count
++ (id) dictionaryWithObjects: (id*)objects forKeys: (id*)keys count: (unsigned int)count;
Returns a dictionary created using the C arrays objects and keys. The number of elements in both C arrays must be count.

dictionaryWithObjectsAndKeys:

-+ (id) dictionaryWithObjectsAndKeys: (id)object, ...
++ (id) dictionaryWithObjectsAndKeys: (id)object, ...;
Returns a dictionary created using the list given as argument. The list is alernately composed of objects and keys. @@ -119,163 +119,163 @@

allKeys

-- (NSArray*) allKeys
+- (NSArray*) allKeys;
Returns an array containing all the dictionary's keys.

allKeysForObject:

-- (NSArray*) allKeysForObject: (id)anObject
+- (NSArray*) allKeysForObject: (id)anObject;
Returns an array containing all the dictionary's keys that are associated with anObject.

allValues

-- (NSArray*) allValues
+- (NSArray*) allValues;
Returns an array containing all the dictionary's objects.

count

-- (unsigned int) count
+- (unsigned int) count;
Returns an unsigned integer which is the number of elements stored in the dictionary.

descriptionInStringsFileFormat

-- (NSString*) descriptionInStringsFileFormat
+- (NSString*) descriptionInStringsFileFormat;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)locale
+- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)locale
+- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

fileGroupOwnerAccountName

-- (NSString*) fileGroupOwnerAccountName
+- (NSString*) fileGroupOwnerAccountName;

fileModificationDate

-- (NSDate*) fileModificationDate
+- (NSDate*) fileModificationDate;

fileOwnerAccountName

-- (NSString*) fileOwnerAccountName
+- (NSString*) fileOwnerAccountName;

filePosixPermissions

-- (unsigned long) filePosixPermissions
+- (unsigned long) filePosixPermissions;

fileSize

-- (unsigned long long) fileSize
+- (unsigned long long) fileSize;

fileSystemFileNumber

-- (unsigned long) fileSystemFileNumber
+- (unsigned long) fileSystemFileNumber;

fileSystemNumber

-- (unsigned long) fileSystemNumber
+- (unsigned long) fileSystemNumber;

fileType

-- (NSString*) fileType
+- (NSString*) fileType;

initWithContentsOfFile:

-- (id) initWithContentsOfFile: (NSString*)path
+- (id) initWithContentsOfFile: (NSString*)path;
see dictionaryWithContentOfFile:

initWithDictionary:

-- (id) initWithDictionary: (NSDictionary*)otherDictionary
+- (id) initWithDictionary: (NSDictionary*)otherDictionary;
See dictionaryWithDictionary:

initWithObjects:

-- (id) initWithObjects: (NSArray*)objects
+- (id) initWithObjects: (NSArray*)objects;
See dictionaryWithObjects:

initWithObjects:forKeys:count:

-- (id) initWithObjects: (id*)objects forKeys: (id*)keys count: (unsigned int)count
+- (id) initWithObjects: (id*)objects forKeys: (id*)keys count: (unsigned int)count;
see dictionaryWithObjects: forKeys: count:

initWithObjectsAndKeys:

-- (id) initWithObjectsAndKeys: (id)object,
+- (id) initWithObjectsAndKeys: (id)object,;
see dictionaryWithObjectsAndKeys:

isEqualToDictionary:

-- (BOOL) isEqualToDictionary: (NSDictionary*)otherDictionary
+- (BOOL) isEqualToDictionary: (NSDictionary*)otherDictionary;

keyEnumerator

-- (NSEnumerator*) keyEnumerator
+- (NSEnumerator*) keyEnumerator;
Return an enumerator object containing all the keys of the dictionary.

keysSortedByValueUsingSelector:

-- (NSArray*) keysSortedByValueUsingSelector: (SEL)comparator
+- (NSArray*) keysSortedByValueUsingSelector: (SEL)comparator;

objectEnumerator

-- (NSEnumerator*) objectEnumerator
+- (NSEnumerator*) objectEnumerator;
Return an enumerator object containing all the keys of the dictionary.

objectForKey:

-- (id) objectForKey: (id)aKey
+- (id) objectForKey: (id)aKey;
Returns the first object which has aKey as key.

objectsForKeys:notFoundMarker:

-- (NSArray*) objectsForKeys: (NSArray*)keys notFoundMarker: (id)anObject
+- (NSArray*) objectsForKeys: (NSArray*)keys notFoundMarker: (id)anObject;

writeToFile:atomically:

-- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag
+- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag;
diff --git a/Documentation/gsdoc/NSDirectoryEnumerator.gsdoc b/Documentation/gsdoc/NSDirectoryEnumerator.gsdoc index 8c9edb05e..b819d36d1 100644 --- a/Documentation/gsdoc/NSDirectoryEnumerator.gsdoc +++ b/Documentation/gsdoc/NSDirectoryEnumerator.gsdoc @@ -1,6 +1,6 @@ - - + + NSDirectoryEnumerator diff --git a/Documentation/gsdoc/NSDirectoryEnumerator.html b/Documentation/gsdoc/NSDirectoryEnumerator.html index f8240a63b..d19249c15 100644 --- a/Documentation/gsdoc/NSDirectoryEnumerator.html +++ b/Documentation/gsdoc/NSDirectoryEnumerator.html @@ -29,17 +29,17 @@

directoryAttributes

-- (NSDictionary*) directoryAttributes
+- (NSDictionary*) directoryAttributes;

fileAttributes

-- (NSDictionary*) fileAttributes
+- (NSDictionary*) fileAttributes;

skipDescendents

-- (void) skipDescendents
+- (void) skipDescendents;

diff --git a/Documentation/gsdoc/NSDistantObject.gsdoc b/Documentation/gsdoc/NSDistantObject.gsdoc index 8c9094f20..15063fdf8 100644 --- a/Documentation/gsdoc/NSDistantObject.gsdoc +++ b/Documentation/gsdoc/NSDistantObject.gsdoc @@ -1,6 +1,6 @@ - - + + NSDistantObject diff --git a/Documentation/gsdoc/NSDistantObject.html b/Documentation/gsdoc/NSDistantObject.html index ac8baf3a9..51fabfe55 100644 --- a/Documentation/gsdoc/NSDistantObject.html +++ b/Documentation/gsdoc/NSDistantObject.html @@ -32,32 +32,32 @@

proxyWithLocal:connection:

-+ (NSDistantObject*) proxyWithLocal: (id)anObject connection: (NSConnection*)aConnection
++ (NSDistantObject*) proxyWithLocal: (id)anObject connection: (NSConnection*)aConnection;

proxyWithTarget:

-+ (NSDistantObject*) proxyWithTarget: (id)remoteObject
++ (NSDistantObject*) proxyWithTarget: (id)remoteObject;

connectionForProxy

-- (NSConnection*) connectionForProxy
+- (NSConnection*) connectionForProxy;

initWithLocal:connection:

-- (id) initWithLocal: (id)anObject connection: (NSConnection*)aConnection
+- (id) initWithLocal: (id)anObject connection: (NSConnection*)aConnection;

initWithTarget:

-- (id) initWithTarget: (id)remoteObject
+- (id) initWithTarget: (id)remoteObject;

setProtocolForProxy:

-- (void) setProtocolForProxy: (Protocol*)aProtocol
+- (void) setProtocolForProxy: (Protocol*)aProtocol;

diff --git a/Documentation/gsdoc/NSDistantObjectRequest.gsdoc b/Documentation/gsdoc/NSDistantObjectRequest.gsdoc index 78e22d76f..9a01b1075 100644 --- a/Documentation/gsdoc/NSDistantObjectRequest.gsdoc +++ b/Documentation/gsdoc/NSDistantObjectRequest.gsdoc @@ -1,6 +1,6 @@ - - + + NSDistantObjectRequest diff --git a/Documentation/gsdoc/NSDistantObjectRequest.html b/Documentation/gsdoc/NSDistantObjectRequest.html index 2ec2fc2d5..7af818d83 100644 --- a/Documentation/gsdoc/NSDistantObjectRequest.html +++ b/Documentation/gsdoc/NSDistantObjectRequest.html @@ -28,22 +28,22 @@

connection

-- (NSConnection*) connection
+- (NSConnection*) connection;

conversation

-- (id) conversation
+- (id) conversation;

invocation

-- (NSInvocation*) invocation
+- (NSInvocation*) invocation;

replyWithException:

-- (void) replyWithException: (NSException*)exception
+- (void) replyWithException: (NSException*)exception;

diff --git a/Documentation/gsdoc/NSDistributedLock.gsdoc b/Documentation/gsdoc/NSDistributedLock.gsdoc index a08bf2c7c..5f233cab9 100644 --- a/Documentation/gsdoc/NSDistributedLock.gsdoc +++ b/Documentation/gsdoc/NSDistributedLock.gsdoc @@ -1,6 +1,6 @@ - - + + NSDistributedLock diff --git a/Documentation/gsdoc/NSDistributedLock.html b/Documentation/gsdoc/NSDistributedLock.html index b42186f43..c46edf890 100644 --- a/Documentation/gsdoc/NSDistributedLock.html +++ b/Documentation/gsdoc/NSDistributedLock.html @@ -32,32 +32,32 @@

lockWithPath:

-+ (NSDistributedLock*) lockWithPath: (NSString*)aPath
++ (NSDistributedLock*) lockWithPath: (NSString*)aPath;

breakLock

-- (void) breakLock
+- (void) breakLock;

initWithPath:

-- (NSDistributedLock*) initWithPath: (NSString*)aPath
+- (NSDistributedLock*) initWithPath: (NSString*)aPath;

lockDate

-- (NSDate*) lockDate
+- (NSDate*) lockDate;

tryLock

-- (BOOL) tryLock
+- (BOOL) tryLock;

unlock

-- (void) unlock
+- (void) unlock;

diff --git a/Documentation/gsdoc/NSDistributedNotificationCenter.gsdoc b/Documentation/gsdoc/NSDistributedNotificationCenter.gsdoc index 0ff7eb3a0..35aa5800a 100644 --- a/Documentation/gsdoc/NSDistributedNotificationCenter.gsdoc +++ b/Documentation/gsdoc/NSDistributedNotificationCenter.gsdoc @@ -1,6 +1,6 @@ - - + + NSDistributedNotificationCenter diff --git a/Documentation/gsdoc/NSDistributedNotificationCenter.html b/Documentation/gsdoc/NSDistributedNotificationCenter.html index 1ba2a6a11..908eb587b 100644 --- a/Documentation/gsdoc/NSDistributedNotificationCenter.html +++ b/Documentation/gsdoc/NSDistributedNotificationCenter.html @@ -37,57 +37,57 @@

defaultCenter

-+ (NSNotificationCenter*) defaultCenter
++ (NSNotificationCenter*) defaultCenter;

notificationCenterForType:

-+ (NSDistributedNotificationCenter*) notificationCenterForType: (NSString*)type
++ (NSDistributedNotificationCenter*) notificationCenterForType: (NSString*)type;

addObserver:selector:name:

-- (void) addObserver: (id)anObserver selector: (SEL)aSelector name: (NSString*)notificationName
+- (void) addObserver: (id)anObserver selector: (SEL)aSelector name: (NSString*)notificationName;

addObserver:selector:name:object:suspensionBehavior:

-- (void) addObserver: (id)anObserver selector: (SEL)aSelector name: (NSString*)notificationName object: (NSString*)anObject suspensionBehavior: (NSNotificationSuspensionBehavior)suspensionBehavior
+- (void) addObserver: (id)anObserver selector: (SEL)aSelector name: (NSString*)notificationName object: (NSString*)anObject suspensionBehavior: (NSNotificationSuspensionBehavior)suspensionBehavior;

postNotification:

-- (void) postNotification: (NSNotification*)notification
+- (void) postNotification: (NSNotification*)notification;

postNotificationName:

-- (void) postNotificationName: (NSString*)notificationName
+- (void) postNotificationName: (NSString*)notificationName;

postNotificationName:object:userInfo:

-- (void) postNotificationName: (NSString*)notificationName object: (NSString*)anObject userInfo: (NSDictionary*)userInfo
+- (void) postNotificationName: (NSString*)notificationName object: (NSString*)anObject userInfo: (NSDictionary*)userInfo;

postNotificationName:object:userInfo:deliverImmediately:

-- (void) postNotificationName: (NSString*)notificationName object: (NSString*)anObject userInfo: (NSDictionary*)userInfo deliverImmediately: (BOOL)deliverImmediately
+- (void) postNotificationName: (NSString*)notificationName object: (NSString*)anObject userInfo: (NSDictionary*)userInfo deliverImmediately: (BOOL)deliverImmediately;

removeObserver:name:object:

-- (void) removeObserver: (id)anObserver name: (NSString*)notificationName object: (NSString*)anObject
+- (void) removeObserver: (id)anObserver name: (NSString*)notificationName object: (NSString*)anObject;

setSuspended:

-- (void) setSuspended: (BOOL)suspended
+- (void) setSuspended: (BOOL)suspended;

suspended

-- (BOOL) suspended
+- (BOOL) suspended;

diff --git a/Documentation/gsdoc/NSEnumerator.gsdoc b/Documentation/gsdoc/NSEnumerator.gsdoc index ebadc26ad..0521af329 100644 --- a/Documentation/gsdoc/NSEnumerator.gsdoc +++ b/Documentation/gsdoc/NSEnumerator.gsdoc @@ -1,6 +1,6 @@ - - + + NSEnumerator diff --git a/Documentation/gsdoc/NSEnumerator.html b/Documentation/gsdoc/NSEnumerator.html index dfa97588b..467028f46 100644 --- a/Documentation/gsdoc/NSEnumerator.html +++ b/Documentation/gsdoc/NSEnumerator.html @@ -28,12 +28,12 @@

allObjects

-- (NSArray*) allObjects
+- (NSArray*) allObjects;

nextObject

-- (id) nextObject
+- (id) nextObject;

diff --git a/Documentation/gsdoc/NSException.gsdoc b/Documentation/gsdoc/NSException.gsdoc index b8e0adcbc..93dc6cd30 100644 --- a/Documentation/gsdoc/NSException.gsdoc +++ b/Documentation/gsdoc/NSException.gsdoc @@ -1,6 +1,6 @@ - - + + NSException diff --git a/Documentation/gsdoc/NSException.html b/Documentation/gsdoc/NSException.html index a14bb6b2e..4ef89a09d 100644 --- a/Documentation/gsdoc/NSException.html +++ b/Documentation/gsdoc/NSException.html @@ -35,47 +35,47 @@

exceptionWithName:reason:userInfo:

-+ (NSException*) exceptionWithName: (NSString*)name reason: (NSString*)reason userInfo: (NSDictionary*)userInfo
++ (NSException*) exceptionWithName: (NSString*)name reason: (NSString*)reason userInfo: (NSDictionary*)userInfo;

raise:format:

-+ (void) raise: (NSString*)name format: (NSString*)format, ...
++ (void) raise: (NSString*)name format: (NSString*)format, ...;

raise:format:arguments:

-+ (void) raise: (NSString*)name format: (NSString*)format arguments: (va_list)argList
++ (void) raise: (NSString*)name format: (NSString*)format arguments: (va_list)argList;

description

-- (NSString*) description
+- (NSString*) description;

initWithName:reason:userInfo:

-- (id) initWithName: (NSString*)name reason: (NSString*)reason userInfo: (NSDictionary*)userInfo
+- (id) initWithName: (NSString*)name reason: (NSString*)reason userInfo: (NSDictionary*)userInfo;

name

-- (NSString*) name
+- (NSString*) name;

raise

-- (void) raise
+- (void) raise;

reason

-- (NSString*) reason
+- (NSString*) reason;

userInfo

-- (NSDictionary*) userInfo
+- (NSDictionary*) userInfo;

diff --git a/Documentation/gsdoc/NSFileHandle.gsdoc b/Documentation/gsdoc/NSFileHandle.gsdoc index 46a08450b..f381b9f02 100644 --- a/Documentation/gsdoc/NSFileHandle.gsdoc +++ b/Documentation/gsdoc/NSFileHandle.gsdoc @@ -1,6 +1,6 @@ - - + + NSFileHandle diff --git a/Documentation/gsdoc/NSFileHandle.html b/Documentation/gsdoc/NSFileHandle.html index c86f2a61a..6c89aac61 100644 --- a/Documentation/gsdoc/NSFileHandle.html +++ b/Documentation/gsdoc/NSFileHandle.html @@ -47,107 +47,107 @@

acceptConnectionInBackgroundAndNotify

-- (void) acceptConnectionInBackgroundAndNotify
+- (void) acceptConnectionInBackgroundAndNotify;

acceptConnectionInBackgroundAndNotifyForModes:

-- (void) acceptConnectionInBackgroundAndNotifyForModes: (NSArray*)modes
+- (void) acceptConnectionInBackgroundAndNotifyForModes: (NSArray*)modes;

availableData

-- (NSData*) availableData
+- (NSData*) availableData;

closeFile

-- (void) closeFile
+- (void) closeFile;

fileDescriptor

-- (int) fileDescriptor
+- (int) fileDescriptor;

initWithFileDescriptor:

-- (id) initWithFileDescriptor: (int)fileDescriptor
+- (id) initWithFileDescriptor: (int)fileDescriptor;

initWithFileDescriptor:

-- (id) initWithFileDescriptor: (int)fileDescriptor
+- (id) initWithFileDescriptor: (int)fileDescriptor;

offsetInFile

-- (unsigned long long) offsetInFile
+- (unsigned long long) offsetInFile;

readDataOfLength:

-- (NSData*) readDataOfLength: (unsigned int)length
+- (NSData*) readDataOfLength: (unsigned int)length;

readDataToEndFile

-- (NSData*) readDataToEndFile
+- (NSData*) readDataToEndFile;

readInBackgroundAndNotify

-- (void) readInBackgroundAndNotify
+- (void) readInBackgroundAndNotify;

readInBackgroundAndNotifyForModes:

-- (void) readInBackgroundAndNotifyForModes: (NSArray*)modes
+- (void) readInBackgroundAndNotifyForModes: (NSArray*)modes;

readToEndOfFileInBackgroundAndNotify

-- (void) readToEndOfFileInBackgroundAndNotify
+- (void) readToEndOfFileInBackgroundAndNotify;

readToEndOfFileInBackgroundAndNotifyForModes:

-- (void) readToEndOfFileInBackgroundAndNotifyForModes: (NSArray*)modes
+- (void) readToEndOfFileInBackgroundAndNotifyForModes: (NSArray*)modes;

seekToEndOfFile

-- (unsigned long long) seekToEndOfFile
+- (unsigned long long) seekToEndOfFile;

seekToFileOffset:

-- (void) seekToFileOffset: (unsigned long long)offset
+- (void) seekToFileOffset: (unsigned long long)offset;

synchronizeFile

-- (void) synchronizeFile
+- (void) synchronizeFile;

truncateFileAtOffset:

-- (void) truncateFileAtOffset: (unsigned long long)offset
+- (void) truncateFileAtOffset: (unsigned long long)offset;

waitForDataInBackgroundAndNotify

-- (void) waitForDataInBackgroundAndNotify
+- (void) waitForDataInBackgroundAndNotify;

waitForDataInBackgroundAndNotifyForModes:

-- (void) waitForDataInBackgroundAndNotifyForModes: (NSArray*)modes
+- (void) waitForDataInBackgroundAndNotifyForModes: (NSArray*)modes;

writeData:

-- (void) writeData: (NSData*)data
+- (void) writeData: (NSData*)data;

diff --git a/Documentation/gsdoc/NSFileManager.gsdoc b/Documentation/gsdoc/NSFileManager.gsdoc index 79379eeda..d5e5eb9d7 100644 --- a/Documentation/gsdoc/NSFileManager.gsdoc +++ b/Documentation/gsdoc/NSFileManager.gsdoc @@ -1,6 +1,6 @@ - - + + NSFileManager diff --git a/Documentation/gsdoc/NSFileManager.html b/Documentation/gsdoc/NSFileManager.html index 5c33ee97d..2c4640eb2 100644 --- a/Documentation/gsdoc/NSFileManager.html +++ b/Documentation/gsdoc/NSFileManager.html @@ -55,147 +55,147 @@

defaultManager

-+ (NSFileManager*) defaultManager
++ (NSFileManager*) defaultManager;

changeCurrentDirectoryPath:

-- (BOOL) changeCurrentDirectoryPath: (NSString*)path
+- (BOOL) changeCurrentDirectoryPath: (NSString*)path;

changeFileAttributes:

-- (BOOL) changeFileAttributes: (NSDictionary*)attributes
+- (BOOL) changeFileAttributes: (NSDictionary*)attributes;

contentsAtPath:

-- (NSData*) contentsAtPath: (NSString*)path
+- (NSData*) contentsAtPath: (NSString*)path;

contentsEqualAtPath:andPath:

-- (BOOL) contentsEqualAtPath: (NSString*)path1 andPath: (NSString*)path2
+- (BOOL) contentsEqualAtPath: (NSString*)path1 andPath: (NSString*)path2;

copyPath:toPath:handler:

-- (BOOL) copyPath: (NSString*)source toPath: (NSString*)destination handler: handler
+- (BOOL) copyPath: (NSString*)source toPath: (NSString*)destination handler: handler;

createDirectoryAtPath:attributes:

-- (BOOL) createDirectoryAtPath: (NSString*)path attributes: (NSDictionary*)attributes
+- (BOOL) createDirectoryAtPath: (NSString*)path attributes: (NSDictionary*)attributes;

createFileAtPath:contents:attributes:

-- (BOOL) createFileAtPath: (NSString*)path contents: (NSData*)contents attributes: (NSDictionary*)attributes
+- (BOOL) createFileAtPath: (NSString*)path contents: (NSData*)contents attributes: (NSDictionary*)attributes;

createSymbolicLinkAtPath:pathContent:

-- (BOOL) createSymbolicLinkAtPath: (NSString*)path pathContent: (NSString*)otherPath
+- (BOOL) createSymbolicLinkAtPath: (NSString*)path pathContent: (NSString*)otherPath;

currentDirectoryPath

-- (NSString*) currentDirectoryPath
+- (NSString*) currentDirectoryPath;

directoryContentsAtPath:

-- (NSArray*) directoryContentsAtPath: (NSString*)path
+- (NSArray*) directoryContentsAtPath: (NSString*)path;

enumeratorAtPath:

-- (NSDirectoryEnumerator*) enumeratorAtPath: (NSString*)path
+- (NSDirectoryEnumerator*) enumeratorAtPath: (NSString*)path;

fileAttributesAtPath:traverseLink:

-- (NSDictionary*) fileAttributesAtPath: (NSString*)path traverseLink: (BOOL)flag
+- (NSDictionary*) fileAttributesAtPath: (NSString*)path traverseLink: (BOOL)flag;

fileExistsAtPath:

-- (BOOL) fileExistsAtPath: (NSString*)path
+- (BOOL) fileExistsAtPath: (NSString*)path;

fileExistsAtPath:isDirectory:

-- (BOOL) fileExistsAtPath: (NSString*)path isDirectory: (BOOL*)isDirectory
+- (BOOL) fileExistsAtPath: (NSString*)path isDirectory: (BOOL*)isDirectory;

fileSystemAttributesAtPath:

-- (NSDictionary*) fileSystemAttributesAtPath: (NSString*)path
+- (NSDictionary*) fileSystemAttributesAtPath: (NSString*)path;

fileSystemRepresentationWithPath:

-- (const char*) fileSystemRepresentationWithPath: (NSString*)path
+- (const char*) fileSystemRepresentationWithPath: (NSString*)path;

isDeletableFileAtPath:

-- (BOOL) isDeletableFileAtPath: (NSString*)path
+- (BOOL) isDeletableFileAtPath: (NSString*)path;

isExecutableFileAtPath:

-- (BOOL) isExecutableFileAtPath: (NSString*)path
+- (BOOL) isExecutableFileAtPath: (NSString*)path;

isReadableFileAtPath:

-- (BOOL) isReadableFileAtPath: (NSString*)path
+- (BOOL) isReadableFileAtPath: (NSString*)path;

isWritableFileAtPath:

-- (BOOL) isWritableFileAtPath: (NSString*)path
+- (BOOL) isWritableFileAtPath: (NSString*)path;

linkPath:toPath:handler:

-- (BOOL) linkPath: (NSString*)source toPath: (NSString*)destination handler: handler
+- (BOOL) linkPath: (NSString*)source toPath: (NSString*)destination handler: handler;

movePath:toPath:handler:

-- (BOOL) movePath: (NSString*)source toPath: (NSString*)destination handler: handler
+- (BOOL) movePath: (NSString*)source toPath: (NSString*)destination handler: handler;

pathContentOfSymbolicLinkAtPath:

-- (NSString*) pathContentOfSymbolicLinkAtPath: (NSString*)cStringPath
+- (NSString*) pathContentOfSymbolicLinkAtPath: (NSString*)cStringPath;

removeFileAtPath:handler:

-- (BOOL) removeFileAtPath: (NSString*)path handler: handler
+- (BOOL) removeFileAtPath: (NSString*)path handler: handler;

stringWithFileSystemRepresentation:

-- (NSString*) stringWithFileSystemRepresentation: (const char*)string
+- (NSString*) stringWithFileSystemRepresentation: (const char*)string;

subpathsAtPath:

-- (NSArray*) subpathsAtPath: (NSString*)path
+- (NSArray*) subpathsAtPath: (NSString*)path;

fileManager:shouldProceedAfterError:

-- (BOOL) fileManager: (NSFileManager*)manager shouldProceedAfterError: (NSDictionary*)errorInfo
+- (BOOL) fileManager: (NSFileManager*)manager shouldProceedAfterError: (NSDictionary*)errorInfo;

fileManager:willProcessPath:

-- (BOOL) fileManager: (NSFileManager*)manager willProcessPath: (NSString*)path
+- (BOOL) fileManager: (NSFileManager*)manager willProcessPath: (NSString*)path;

diff --git a/Documentation/gsdoc/NSFormatter.gsdoc b/Documentation/gsdoc/NSFormatter.gsdoc index 0af6c561a..415833838 100644 --- a/Documentation/gsdoc/NSFormatter.gsdoc +++ b/Documentation/gsdoc/NSFormatter.gsdoc @@ -1,6 +1,6 @@ - - + + NSFormatter diff --git a/Documentation/gsdoc/NSFormatter.html b/Documentation/gsdoc/NSFormatter.html index da3bf1345..39bdb2365 100644 --- a/Documentation/gsdoc/NSFormatter.html +++ b/Documentation/gsdoc/NSFormatter.html @@ -31,27 +31,27 @@

attributedStringForObjectValue:withDefaultAttributes:

-- (NSAttributedString*) attributedStringForObjectValue: (id)anObject withDefaultAttributes: (NSDictionary*)attributes
+- (NSAttributedString*) attributedStringForObjectValue: (id)anObject withDefaultAttributes: (NSDictionary*)attributes;

editingStringForObjectValue:

-- (NSString*) editingStringForObjectValue: (id)anObject
+- (NSString*) editingStringForObjectValue: (id)anObject;

getObjectValue:forString:errorDescription:

-- (BOOL) getObjectValue: (id*)anObject forString: (NSString*)string errorDescription: (NSString**)error
+- (BOOL) getObjectValue: (id*)anObject forString: (NSString*)string errorDescription: (NSString**)error;

isPartialStringValid:

-- (BOOL) isPartialStringValid:
+- (BOOL) isPartialStringValid: ;

stringForObjectValue:

-- (NSString*) stringForObjectValue: (id)anObject
+- (NSString*) stringForObjectValue: (id)anObject;

diff --git a/Documentation/gsdoc/NSHost.gsdoc b/Documentation/gsdoc/NSHost.gsdoc index ebd6ef8f7..a1f30a9cc 100644 --- a/Documentation/gsdoc/NSHost.gsdoc +++ b/Documentation/gsdoc/NSHost.gsdoc @@ -1,6 +1,6 @@ - - + + NSHost diff --git a/Documentation/gsdoc/NSHost.html b/Documentation/gsdoc/NSHost.html index 4955b4a9d..89ca38457 100644 --- a/Documentation/gsdoc/NSHost.html +++ b/Documentation/gsdoc/NSHost.html @@ -37,57 +37,57 @@

currentHost

-+ (NSHost*) currentHost
++ (NSHost*) currentHost;

flushHostCache

-+ (void) flushHostCache
++ (void) flushHostCache;

hostWithAddress:

-+ (NSHost*) hostWithAddress: (NSString*)address
++ (NSHost*) hostWithAddress: (NSString*)address;

hostWithName:

-+ (NSHost*) hostWithName: (NSString*)name
++ (NSHost*) hostWithName: (NSString*)name;

isHostCacheEnabled

-+ (BOOL) isHostCacheEnabled
++ (BOOL) isHostCacheEnabled;

setHostCacheEnabled:

-+ (void) setHostCacheEnabled: (BOOL)flag
++ (void) setHostCacheEnabled: (BOOL)flag;

address

-- (NSString*) address
+- (NSString*) address;

addresses

-- (NSArray*) addresses
+- (NSArray*) addresses;

isEqualToHost:

-- (BOOL) isEqualToHost: (NSHost*)aHost
+- (BOOL) isEqualToHost: (NSHost*)aHost;

name

-- (NSString*) name
+- (NSString*) name;

names

-- (NSArray*) names
+- (NSArray*) names;

diff --git a/Documentation/gsdoc/NSInvocation.gsdoc b/Documentation/gsdoc/NSInvocation.gsdoc index 96e7be25c..27d7885e3 100644 --- a/Documentation/gsdoc/NSInvocation.gsdoc +++ b/Documentation/gsdoc/NSInvocation.gsdoc @@ -1,6 +1,6 @@ - - + + NSInvocation diff --git a/Documentation/gsdoc/NSInvocation.html b/Documentation/gsdoc/NSInvocation.html index b3c65ea94..ba7b67635 100644 --- a/Documentation/gsdoc/NSInvocation.html +++ b/Documentation/gsdoc/NSInvocation.html @@ -40,72 +40,72 @@

invocationWithMethodSignature:

-+ (NSInvocation*) invocationWithMethodSignature: (NSMethodSignature*)signature
++ (NSInvocation*) invocationWithMethodSignature: (NSMethodSignature*)signature;

argumentsRetained

-- (BOOL) argumentsRetained
+- (BOOL) argumentsRetained;

getArgument:atIndex:

-- (void) getArgument: (void*)buffer atIndex: (int)index
+- (void) getArgument: (void*)buffer atIndex: (int)index;

getReturnValue:

-- (void) getReturnValue: (void*)buffer
+- (void) getReturnValue: (void*)buffer;

invoke

-- (void) invoke
+- (void) invoke;

invokeWithTarget:

-- (void) invokeWithTarget: (id)anObject
+- (void) invokeWithTarget: (id)anObject;

methodSignature

-- (NSMethodSignature*) methodSignature
+- (NSMethodSignature*) methodSignature;

retainArguments

-- (void) retainArguments
+- (void) retainArguments;

selector

-- (SEL) selector
+- (SEL) selector;

setArgument:atIndex:

-- (void) setArgument: (void*)buffer atIndex: (int)index
+- (void) setArgument: (void*)buffer atIndex: (int)index;

setReturnValue:

-- (void) setReturnValue: (void*)buffer
+- (void) setReturnValue: (void*)buffer;

setSelector:

-- (void) setSelector: (SEL)selector
+- (void) setSelector: (SEL)selector;

setTarget:

-- (void) setTarget: (id)anObject
+- (void) setTarget: (id)anObject;

target

-- (id) target
+- (id) target;

diff --git a/Documentation/gsdoc/NSLock.gsdoc b/Documentation/gsdoc/NSLock.gsdoc index 93bc39b61..794c6743f 100644 --- a/Documentation/gsdoc/NSLock.gsdoc +++ b/Documentation/gsdoc/NSLock.gsdoc @@ -1,6 +1,6 @@ - - + + NSLock diff --git a/Documentation/gsdoc/NSLock.html b/Documentation/gsdoc/NSLock.html index 0228eeda4..51f119896 100644 --- a/Documentation/gsdoc/NSLock.html +++ b/Documentation/gsdoc/NSLock.html @@ -28,12 +28,12 @@

lockBeforeDate:

-- (BOOL) lockBeforeDate: (NSDate*)limit
+- (BOOL) lockBeforeDate: (NSDate*)limit;

tryLock

-- (BOOL) tryLock
+- (BOOL) tryLock;

diff --git a/Documentation/gsdoc/NSMethodSignature.gsdoc b/Documentation/gsdoc/NSMethodSignature.gsdoc index 2dc27a205..1b7eec25b 100644 --- a/Documentation/gsdoc/NSMethodSignature.gsdoc +++ b/Documentation/gsdoc/NSMethodSignature.gsdoc @@ -1,6 +1,6 @@ - - + + NSMethodSignature diff --git a/Documentation/gsdoc/NSMethodSignature.html b/Documentation/gsdoc/NSMethodSignature.html index 669d9c56b..6606cacfe 100644 --- a/Documentation/gsdoc/NSMethodSignature.html +++ b/Documentation/gsdoc/NSMethodSignature.html @@ -32,32 +32,32 @@

getArgumentTypeAtIndex:

-- (const char*) getArgumentTypeAtIndex: (unsigned int)index
+- (const char*) getArgumentTypeAtIndex: (unsigned int)index;

frameLength

-- (unsigned int) frameLength
+- (unsigned int) frameLength;

isOneway

-- (BOOL) isOneway
+- (BOOL) isOneway;

methodReturnLength

-- (unsigned int) methodReturnLength
+- (unsigned int) methodReturnLength;

methodReturnType

-- (char*) methodReturnType
+- (char*) methodReturnType;

numberOfArguments

-- (unsigned int) numberOfArguments
+- (unsigned int) numberOfArguments;

diff --git a/Documentation/gsdoc/NSMutableArray.gsdoc b/Documentation/gsdoc/NSMutableArray.gsdoc index ac469f1f5..25e946cfd 100644 --- a/Documentation/gsdoc/NSMutableArray.gsdoc +++ b/Documentation/gsdoc/NSMutableArray.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableArray diff --git a/Documentation/gsdoc/NSMutableArray.html b/Documentation/gsdoc/NSMutableArray.html index 88d68937b..ca460fbf5 100644 --- a/Documentation/gsdoc/NSMutableArray.html +++ b/Documentation/gsdoc/NSMutableArray.html @@ -47,107 +47,107 @@

arrayWithCapacity:

-+ (id) arrayWithCapacity: (unsigned int)numItems
++ (id) arrayWithCapacity: (unsigned int)numItems;

addObject:

-- (void) addObject: (id)anObject
+- (void) addObject: (id)anObject;

addObjectsFromArray:

-- (void) addObjectsFromArray: (NSArray*)otherArray
+- (void) addObjectsFromArray: (NSArray*)otherArray;

initWithCapacity:

-- (id) initWithCapacity: (unsigned int)numItems
+- (id) initWithCapacity: (unsigned int)numItems;

insertObject:

-- (void) insertObject: (id)anObject
+- (void) insertObject: (id)anObject;

removeAllObjects

-- (void) removeAllObjects
+- (void) removeAllObjects;

removeLastObject

-- (void) removeLastObject
+- (void) removeLastObject;

removeObject:

-- (void) removeObject: (id)anObject
+- (void) removeObject: (id)anObject;

removeObject:

-- (void) removeObject: (id)anObject
+- (void) removeObject: (id)anObject;

removeObjectAtIndex:

-- (void) removeObjectAtIndex: (unsigned int)index
+- (void) removeObjectAtIndex: (unsigned int)index;

removeObjectIdenticalTo:

-- (void) removeObjectIdenticalTo: (id)anObject
+- (void) removeObjectIdenticalTo: (id)anObject;

removeObjectIdenticalTo:

-- (void) removeObjectIdenticalTo: (id)anObject
+- (void) removeObjectIdenticalTo: (id)anObject;

removeObjectsFromIndices:numIndices:

-- (void) removeObjectsFromIndices: (unsigned int*)indices numIndices: (unsigned int)count
+- (void) removeObjectsFromIndices: (unsigned int*)indices numIndices: (unsigned int)count;

removeObjectsInArray:

-- (void) removeObjectsInArray: (NSArray*)otherArray
+- (void) removeObjectsInArray: (NSArray*)otherArray;

removeObjectsInRange:

-- (void) removeObjectsInRange: (NSRange)aRange
+- (void) removeObjectsInRange: (NSRange)aRange;

replaceObjectAtIndex:withObject:

-- (void) replaceObjectAtIndex: (unsigned int)index withObject: (id)anObject
+- (void) replaceObjectAtIndex: (unsigned int)index withObject: (id)anObject;

replaceObjectsInRange:withObjectsFromArray:

-- (void) replaceObjectsInRange: (NSRange)aRange withObjectsFromArray: (NSArray*)otherArray
+- (void) replaceObjectsInRange: (NSRange)aRange withObjectsFromArray: (NSArray*)otherArray;

replaceObjectsInRange:withObjectsFromArray:

-- (void) replaceObjectsInRange: (NSRange)aRange withObjectsFromArray: (NSArray*)otherArray
+- (void) replaceObjectsInRange: (NSRange)aRange withObjectsFromArray: (NSArray*)otherArray;

setArray:

-- (void) setArray: (NSArray*)otherArray
+- (void) setArray: (NSArray*)otherArray;

sortUsingFunction:context:

-- (void) sortUsingFunction: (int(*)(id,id,void*))compare context: (void*)context
+- (void) sortUsingFunction: (int(*)(id,id,void*))compare context: (void*)context;

sortUsingSelector:

-- (void) sortUsingSelector: (SEL)comparator
+- (void) sortUsingSelector: (SEL)comparator;

diff --git a/Documentation/gsdoc/NSMutableAttributedString.gsdoc b/Documentation/gsdoc/NSMutableAttributedString.gsdoc index 48237e0ce..5317e0d40 100644 --- a/Documentation/gsdoc/NSMutableAttributedString.gsdoc +++ b/Documentation/gsdoc/NSMutableAttributedString.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableAttributedString diff --git a/Documentation/gsdoc/NSMutableAttributedString.html b/Documentation/gsdoc/NSMutableAttributedString.html index 3b992af87..0128dc6f5 100644 --- a/Documentation/gsdoc/NSMutableAttributedString.html +++ b/Documentation/gsdoc/NSMutableAttributedString.html @@ -39,67 +39,67 @@

addAttribute:value:

-- (void) addAttribute: (NSString*)name value: (id)value
+- (void) addAttribute: (NSString*)name value: (id)value;

addAttributes:

-- (void) addAttributes: (NSDictionary*)attributes
+- (void) addAttributes: (NSDictionary*)attributes;

appendAttributedString:

-- (void) appendAttributedString: (NSAttributedString*)attributedString
+- (void) appendAttributedString: (NSAttributedString*)attributedString;

beginEditing

-- (void) beginEditing
+- (void) beginEditing;

deleteCharactersInRange:

-- (void) deleteCharactersInRange: (NSRange)aRange
+- (void) deleteCharactersInRange: (NSRange)aRange;

endEditing

-- (void) endEditing
+- (void) endEditing;

insertAttributedString:

-- (void) insertAttributedString: (NSAttributedString*)attributedString
+- (void) insertAttributedString: (NSAttributedString*)attributedString;

mutableString

-- (NSMutableString*) mutableString
+- (NSMutableString*) mutableString;

removeAttribute:range:

-- (void) removeAttribute: (NSString*)name range: (NSRange)aRange
+- (void) removeAttribute: (NSString*)name range: (NSRange)aRange;

replaceCharactersInRange:withAttributedString:

-- (void) replaceCharactersInRange: (NSRange)aRange withAttributedString: (NSAttributedString*)attributedString
+- (void) replaceCharactersInRange: (NSRange)aRange withAttributedString: (NSAttributedString*)attributedString;

replaceCharactersInRange:withString:

-- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString
+- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString;

setAttributedString:

-- (void) setAttributedString: (NSAttributedString*)attributedString
+- (void) setAttributedString: (NSAttributedString*)attributedString;

setAttributes:

-- (void) setAttributes: (NSDictionary*)attributes
+- (void) setAttributes: (NSDictionary*)attributes;

diff --git a/Documentation/gsdoc/NSMutableCharacterSet.gsdoc b/Documentation/gsdoc/NSMutableCharacterSet.gsdoc index 6f476e4e7..748cccdc9 100644 --- a/Documentation/gsdoc/NSMutableCharacterSet.gsdoc +++ b/Documentation/gsdoc/NSMutableCharacterSet.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableCharacterSet diff --git a/Documentation/gsdoc/NSMutableCharacterSet.html b/Documentation/gsdoc/NSMutableCharacterSet.html index 835375680..019bcae22 100644 --- a/Documentation/gsdoc/NSMutableCharacterSet.html +++ b/Documentation/gsdoc/NSMutableCharacterSet.html @@ -33,37 +33,37 @@

addCharactersInRange:

-- (void) addCharactersInRange: (NSRange)aRange
+- (void) addCharactersInRange: (NSRange)aRange;

addCharactersInString:

-- (void) addCharactersInString: (NSString*)aString
+- (void) addCharactersInString: (NSString*)aString;

formIntersectionWithCharacterSet:

-- (void) formIntersectionWithCharacterSet: (NSCharacterSet*)otherSet
+- (void) formIntersectionWithCharacterSet: (NSCharacterSet*)otherSet;

formUnionWithCharacterSet:

-- (void) formUnionWithCharacterSet: (NSCharacterSet*)otherSet
+- (void) formUnionWithCharacterSet: (NSCharacterSet*)otherSet;

invert

-- (void) invert
+- (void) invert;

removeCharactersInRange:

-- (void) removeCharactersInRange: (NSRange)aRange
+- (void) removeCharactersInRange: (NSRange)aRange;

removeCharactersInString:

-- (void) removeCharactersInString: (NSString*)aString
+- (void) removeCharactersInString: (NSString*)aString;

diff --git a/Documentation/gsdoc/NSMutableData.gsdoc b/Documentation/gsdoc/NSMutableData.gsdoc index 2d0a0e985..c34eca26a 100644 --- a/Documentation/gsdoc/NSMutableData.gsdoc +++ b/Documentation/gsdoc/NSMutableData.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableData diff --git a/Documentation/gsdoc/NSMutableData.html b/Documentation/gsdoc/NSMutableData.html index bcabd4f5a..50e18d54e 100644 --- a/Documentation/gsdoc/NSMutableData.html +++ b/Documentation/gsdoc/NSMutableData.html @@ -44,97 +44,97 @@

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

dataWithCapacity:

-+ (id) dataWithCapacity: (unsigned int)aNumItems
++ (id) dataWithCapacity: (unsigned int)aNumItems;

dataWithLength:

-+ (id) dataWithLength: (unsigned int)length
++ (id) dataWithLength: (unsigned int)length;

appendBytes:length:

-- (void) appendBytes: (const void*)bytes length: (unsigned int)length
+- (void) appendBytes: (const void*)bytes length: (unsigned int)length;

appendData:

-- (void) appendData: (NSData*)otherData
+- (void) appendData: (NSData*)otherData;

increaseLengthBy:

-- (void) increaseLengthBy: (unsigned int)extraLength
+- (void) increaseLengthBy: (unsigned int)extraLength;

initWithCapacity:

-- (id) initWithCapacity: (unsigned int)capacity
+- (id) initWithCapacity: (unsigned int)capacity;

initWithLength:

-- (id) initWithLength: (unsigned int)length
+- (id) initWithLength: (unsigned int)length;

mutableBytes

-- (void*) mutableBytes
+- (void*) mutableBytes;

replaceBytesInRange:withBytes:

-- (void) replaceBytesInRange: (NSRange)range withBytes: (const void*)bytes
+- (void) replaceBytesInRange: (NSRange)range withBytes: (const void*)bytes;

resetBytesInRange:

-- (void) resetBytesInRange: (NSRange)range
+- (void) resetBytesInRange: (NSRange)range;

serializeAlignedBytesLength:

-- (void) serializeAlignedBytesLength: (unsigned int)length
+- (void) serializeAlignedBytesLength: (unsigned int)length;

serializeDataAt:ofObjCType:context:

-- (void) serializeDataAt: (const void*)data ofObjCType: (const char*)type context: (id<NSObjCTypeSerializationCallBack>)callback
+- (void) serializeDataAt: (const void*)data ofObjCType: (const char*)type context: (id<NSObjCTypeSerializationCallBack>)callback;

serializeInt:

-- (void) serializeInt: (int)value
+- (void) serializeInt: (int)value;

serializeInt:atIndex:

-- (void) serializeInt: (int)value atIndex: (unsigned int)index
+- (void) serializeInt: (int)value atIndex: (unsigned int)index;

serializeInts:

-- (void) serializeInts: (int*)intBuffer
+- (void) serializeInts: (int*)intBuffer;

serializeInts:count:atIndex:

-- (void) serializeInts: (int*)intBuffer count: (unsigned int)numInts atIndex: (unsigned int)index
+- (void) serializeInts: (int*)intBuffer count: (unsigned int)numInts atIndex: (unsigned int)index;

setData:

-- (void) setData: (NSData*)aData
+- (void) setData: (NSData*)aData;

setLength:

-- (void) setLength: (unsigned int)length
+- (void) setLength: (unsigned int)length;

diff --git a/Documentation/gsdoc/NSMutableDictionary.gsdoc b/Documentation/gsdoc/NSMutableDictionary.gsdoc index a5bb42a0f..4c7da8405 100644 --- a/Documentation/gsdoc/NSMutableDictionary.gsdoc +++ b/Documentation/gsdoc/NSMutableDictionary.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableDictionary diff --git a/Documentation/gsdoc/NSMutableDictionary.html b/Documentation/gsdoc/NSMutableDictionary.html index fce004549..a79927e72 100644 --- a/Documentation/gsdoc/NSMutableDictionary.html +++ b/Documentation/gsdoc/NSMutableDictionary.html @@ -35,47 +35,47 @@

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

dictionaryWithCapacity:

-+ (id) dictionaryWithCapacity: (unsigned int)numItems
++ (id) dictionaryWithCapacity: (unsigned int)numItems;

addEntriesFromDictionary:

-- (void) addEntriesFromDictionary: (NSDictionary*)otherDictionary
+- (void) addEntriesFromDictionary: (NSDictionary*)otherDictionary;

initWithCapacity:

-- (id) initWithCapacity: (unsigned int)numItems
+- (id) initWithCapacity: (unsigned int)numItems;

removeAllObjects

-- (void) removeAllObjects
+- (void) removeAllObjects;

removeObjectForKey:

-- (void) removeObjectForKey: (id)aKey
+- (void) removeObjectForKey: (id)aKey;

removeObjectsForKeys:

-- (void) removeObjectsForKeys: (NSArray*)keyArray
+- (void) removeObjectsForKeys: (NSArray*)keyArray;

setDictionary:

-- (void) setDictionary: (NSDictionary*)otherDictionary
+- (void) setDictionary: (NSDictionary*)otherDictionary;

setObject:

-- (void) setObject: (id)anObject
+- (void) setObject: (id)anObject;

diff --git a/Documentation/gsdoc/NSMutableSet.gsdoc b/Documentation/gsdoc/NSMutableSet.gsdoc index b9e132ee5..e54c67b67 100644 --- a/Documentation/gsdoc/NSMutableSet.gsdoc +++ b/Documentation/gsdoc/NSMutableSet.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableSet diff --git a/Documentation/gsdoc/NSMutableSet.html b/Documentation/gsdoc/NSMutableSet.html index c8fe0158b..bf05f1e84 100644 --- a/Documentation/gsdoc/NSMutableSet.html +++ b/Documentation/gsdoc/NSMutableSet.html @@ -37,57 +37,57 @@

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

setWithCapacity:

-+ (id) setWithCapacity: (unsigned int)numItems
++ (id) setWithCapacity: (unsigned int)numItems;

addObject:

-- (void) addObject: (id)anObject
+- (void) addObject: (id)anObject;

addObjectsFromArray:

-- (void) addObjectsFromArray: (NSArray*)anArray
+- (void) addObjectsFromArray: (NSArray*)anArray;

initWithCapacity:

-- (id) initWithCapacity: (unsigned int)numItems
+- (id) initWithCapacity: (unsigned int)numItems;

intersectSet:

-- (void) intersectSet: (NSSet*)otherSet
+- (void) intersectSet: (NSSet*)otherSet;

minusSet:

-- (void) minusSet: (NSSet*)otherSet
+- (void) minusSet: (NSSet*)otherSet;

removeAllObjects

-- (void) removeAllObjects
+- (void) removeAllObjects;

removeObject:

-- (void) removeObject: (id)anObject
+- (void) removeObject: (id)anObject;

setSet:

-- (void) setSet: (NSSet*)otherSet
+- (void) setSet: (NSSet*)otherSet;

unionSet:

-- (void) unionSet: (NSSet*)otherSet
+- (void) unionSet: (NSSet*)otherSet;

diff --git a/Documentation/gsdoc/NSMutableString.gsdoc b/Documentation/gsdoc/NSMutableString.gsdoc index 61e497924..4e160e67d 100644 --- a/Documentation/gsdoc/NSMutableString.gsdoc +++ b/Documentation/gsdoc/NSMutableString.gsdoc @@ -1,6 +1,6 @@ - - + + NSMutableString diff --git a/Documentation/gsdoc/NSMutableString.html b/Documentation/gsdoc/NSMutableString.html index 9d1bede7c..b71b17e2c 100644 --- a/Documentation/gsdoc/NSMutableString.html +++ b/Documentation/gsdoc/NSMutableString.html @@ -34,42 +34,42 @@

stringWithCapacity:

-+ (NSMutableString*) stringWithCapacity: (unsigned int)capacity
++ (NSMutableString*) stringWithCapacity: (unsigned int)capacity;

appendFormat:

-- (void) appendFormat: (NSString*)format,
+- (void) appendFormat: (NSString*)format,;

appendString:

-- (void) appendString: (NSString*)aString
+- (void) appendString: (NSString*)aString;

deleteCharactersInRange:

-- (void) deleteCharactersInRange: (NSRange)aRange
+- (void) deleteCharactersInRange: (NSRange)aRange;

initWithCapacity:

-- (id) initWithCapacity: (unsigned int)capacity
+- (id) initWithCapacity: (unsigned int)capacity;

insertString:

-- (void) insertString: (NSString*)aString
+- (void) insertString: (NSString*)aString;

replaceCharactersInRange:withString:

-- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString
+- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString;

setString:

-- (void) setString: (NSString*)aString
+- (void) setString: (NSString*)aString;

diff --git a/Documentation/gsdoc/NSNotification.gsdoc b/Documentation/gsdoc/NSNotification.gsdoc index a61c6e1dc..c2199f1cd 100644 --- a/Documentation/gsdoc/NSNotification.gsdoc +++ b/Documentation/gsdoc/NSNotification.gsdoc @@ -1,6 +1,6 @@ - - + + NSNotification diff --git a/Documentation/gsdoc/NSNotification.html b/Documentation/gsdoc/NSNotification.html index 5d9ca96a8..292ef92e0 100644 --- a/Documentation/gsdoc/NSNotification.html +++ b/Documentation/gsdoc/NSNotification.html @@ -31,27 +31,27 @@

notificationWithName:object:

-+ (id) notificationWithName: (NSString*)aName object: (id)anObject
++ (id) notificationWithName: (NSString*)aName object: (id)anObject;

notificationWithName:object:userInfo:

-+ (id) notificationWithName: (NSString*)aName object: (id)anObject userInfo: (NSDictionary*)userInfo
++ (id) notificationWithName: (NSString*)aName object: (id)anObject userInfo: (NSDictionary*)userInfo;

name

-- (NSString*) name
+- (NSString*) name;

object

-- (id) object
+- (id) object;

userInfo

-- (NSDictionary*) userInfo
+- (NSDictionary*) userInfo;

diff --git a/Documentation/gsdoc/NSNotificationCenter.gsdoc b/Documentation/gsdoc/NSNotificationCenter.gsdoc index 6b5eb0c55..317efb89d 100644 --- a/Documentation/gsdoc/NSNotificationCenter.gsdoc +++ b/Documentation/gsdoc/NSNotificationCenter.gsdoc @@ -1,6 +1,6 @@ - - + + NSNotificationCenter diff --git a/Documentation/gsdoc/NSNotificationCenter.html b/Documentation/gsdoc/NSNotificationCenter.html index ad4653acb..b20db4707 100644 --- a/Documentation/gsdoc/NSNotificationCenter.html +++ b/Documentation/gsdoc/NSNotificationCenter.html @@ -33,37 +33,37 @@

defaultCenter

-+ (NSNotificationCenter*) defaultCenter
++ (NSNotificationCenter*) defaultCenter;

addObserver:selector:name:

-- (void) addObserver: (id)anObserver selector: (SEL)aSelector name: (NSString*)notificationName
+- (void) addObserver: (id)anObserver selector: (SEL)aSelector name: (NSString*)notificationName;

postNotification:

-- (void) postNotification: (NSNotification*)notification
+- (void) postNotification: (NSNotification*)notification;

postNotificationName:

-- (void) postNotificationName: (NSString*)notificationName
+- (void) postNotificationName: (NSString*)notificationName;

postNotificationName:object:userInfo:

-- (void) postNotificationName: (NSString*)notificationName object: (id)anObject userInfo: (NSDictionary*)userInfo
+- (void) postNotificationName: (NSString*)notificationName object: (id)anObject userInfo: (NSDictionary*)userInfo;

removeObserver:

-- (void) removeObserver: (id)anObserver
+- (void) removeObserver: (id)anObserver;

removeObserver:name:object:

-- (void) removeObserver: (id)anObserver name: (NSString*)notificationName object: (id)anObject
+- (void) removeObserver: (id)anObserver name: (NSString*)notificationName object: (id)anObject;

diff --git a/Documentation/gsdoc/NSNotificationQueue.gsdoc b/Documentation/gsdoc/NSNotificationQueue.gsdoc index b32ed7cdc..e983d3359 100644 --- a/Documentation/gsdoc/NSNotificationQueue.gsdoc +++ b/Documentation/gsdoc/NSNotificationQueue.gsdoc @@ -1,6 +1,6 @@ - - + + NSNotificationQueue diff --git a/Documentation/gsdoc/NSNotificationQueue.html b/Documentation/gsdoc/NSNotificationQueue.html index 6097bdf54..46013972e 100644 --- a/Documentation/gsdoc/NSNotificationQueue.html +++ b/Documentation/gsdoc/NSNotificationQueue.html @@ -31,27 +31,27 @@

defaultQueue

-+ (NSNotificationQueue*) defaultQueue
++ (NSNotificationQueue*) defaultQueue;

dequeueNotificationsMatching:

-- (void) dequeueNotificationsMatching: (NSNotification*)notification
+- (void) dequeueNotificationsMatching: (NSNotification*)notification;

enqueueNotification:

-- (void) enqueueNotification: (NSNotification*)notification
+- (void) enqueueNotification: (NSNotification*)notification;

enqueueNotification:postingStyle:coalesceMask:

-- (void) enqueueNotification: (NSNotification*)notification postingStyle: (NSPostingStyle)postingStyle coalesceMask: (unsigned int)coalesceMask
+- (void) enqueueNotification: (NSNotification*)notification postingStyle: (NSPostingStyle)postingStyle coalesceMask: (unsigned int)coalesceMask;

initWithNotificationCenter:

-- (id) initWithNotificationCenter: (NSNotificationCenter*)notificationCenter
+- (id) initWithNotificationCenter: (NSNotificationCenter*)notificationCenter;

diff --git a/Documentation/gsdoc/NSNumber.gsdoc b/Documentation/gsdoc/NSNumber.gsdoc index edec56801..b716caf9c 100644 --- a/Documentation/gsdoc/NSNumber.gsdoc +++ b/Documentation/gsdoc/NSNumber.gsdoc @@ -1,6 +1,6 @@ - - + + NSNumber diff --git a/Documentation/gsdoc/NSNumber.html b/Documentation/gsdoc/NSNumber.html index 888634d8a..ba897e63a 100644 --- a/Documentation/gsdoc/NSNumber.html +++ b/Documentation/gsdoc/NSNumber.html @@ -71,227 +71,227 @@

numberWithBool:

-+ (NSNumber*) numberWithBool: (BOOL)value
++ (NSNumber*) numberWithBool: (BOOL)value;

numberWithChar:

-+ (NSNumber*) numberWithChar: (char)value
++ (NSNumber*) numberWithChar: (char)value;

numberWithDouble:

-+ (NSNumber*) numberWithDouble: (double)value
++ (NSNumber*) numberWithDouble: (double)value;

numberWithFloat:

-+ (NSNumber*) numberWithFloat: (float)value
++ (NSNumber*) numberWithFloat: (float)value;

numberWithInt:

-+ (NSNumber*) numberWithInt: (int)value
++ (NSNumber*) numberWithInt: (int)value;

numberWithLong:

-+ (NSNumber*) numberWithLong: (long int)value
++ (NSNumber*) numberWithLong: (long int)value;

numberWithLongLong:

-+ (NSNumber*) numberWithLongLong: (long long int)value
++ (NSNumber*) numberWithLongLong: (long long int)value;

numberWithShort:

-+ (NSNumber*) numberWithShort: (short int)value
++ (NSNumber*) numberWithShort: (short int)value;

numberWithUnsignedChar:

-+ (NSNumber*) numberWithUnsignedChar: (unsigned char)value
++ (NSNumber*) numberWithUnsignedChar: (unsigned char)value;

numberWithUnsignedInt:

-+ (NSNumber*) numberWithUnsignedInt: (unsigned int)value
++ (NSNumber*) numberWithUnsignedInt: (unsigned int)value;

numberWithUnsignedLong:

-+ (NSNumber*) numberWithUnsignedLong: (unsigned long int)value
++ (NSNumber*) numberWithUnsignedLong: (unsigned long int)value;

numberWithUnsignedLongLong:

-+ (NSNumber*) numberWithUnsignedLongLong: (unsigned long long int)value
++ (NSNumber*) numberWithUnsignedLongLong: (unsigned long long int)value;

numberWithUnsignedShort:

-+ (NSNumber*) numberWithUnsignedShort: (unsigned short int)value
++ (NSNumber*) numberWithUnsignedShort: (unsigned short int)value;

boolValue

-- (BOOL) boolValue
+- (BOOL) boolValue;

charValue

-- (char) charValue
+- (char) charValue;

compare:

-- (NSComparisonResult) compare: (NSNumber*)aNumber
+- (NSComparisonResult) compare: (NSNumber*)aNumber;

decimalValue

-- (NSDecimal) decimalValue
+- (NSDecimal) decimalValue;

description

-- (NSString*) description
+- (NSString*) description;

descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale
+- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale;

doubleValue

-- (double) doubleValue
+- (double) doubleValue;

floatValue

-- (float) floatValue
+- (float) floatValue;

initWithBool:

-- (id) initWithBool: (BOOL)value
+- (id) initWithBool: (BOOL)value;

initWithChar:

-- (id) initWithChar: (char)value
+- (id) initWithChar: (char)value;

initWithDouble:

-- (id) initWithDouble: (double)value
+- (id) initWithDouble: (double)value;

initWithFloat:

-- (id) initWithFloat: (float)value
+- (id) initWithFloat: (float)value;

initWithInt:

-- (id) initWithInt: (int)value
+- (id) initWithInt: (int)value;

initWithLong:

-- (id) initWithLong: (long int)value
+- (id) initWithLong: (long int)value;

initWithLongLong:

-- (id) initWithLongLong: (long long int)value
+- (id) initWithLongLong: (long long int)value;

initWithShort:

-- (id) initWithShort: (short int)value
+- (id) initWithShort: (short int)value;

initWithUnsignedChar:

-- (id) initWithUnsignedChar: (unsigned char)value
+- (id) initWithUnsignedChar: (unsigned char)value;

initWithUnsignedInt:

-- (id) initWithUnsignedInt: (unsigned int)value
+- (id) initWithUnsignedInt: (unsigned int)value;

initWithUnsignedLong:

-- (id) initWithUnsignedLong: (unsigned long int)value
+- (id) initWithUnsignedLong: (unsigned long int)value;

initWithUnsignedLongLong:

-- (id) initWithUnsignedLongLong: (unsigned long long int)value
+- (id) initWithUnsignedLongLong: (unsigned long long int)value;

initWithUnsignedShort:

-- (id) initWithUnsignedShort: (unsigned short int)value
+- (id) initWithUnsignedShort: (unsigned short int)value;

intValue

-- (int) intValue
+- (int) intValue;

isEqualToNumber:

-- (BOOL) isEqualToNumber: (NSNumber*)aNumber
+- (BOOL) isEqualToNumber: (NSNumber*)aNumber;

longLongValue

-- (long long int) longLongValue
+- (long long int) longLongValue;

longValue

-- (long int) longValue
+- (long int) longValue;

shortValue

-- (short int) shortValue
+- (short int) shortValue;

stringValue

-- (NSString*) stringValue
+- (NSString*) stringValue;

unsignedCharValue

-- (unsigned char) unsignedCharValue
+- (unsigned char) unsignedCharValue;

unsignedIntValue

-- (unsigned int) unsignedIntValue
+- (unsigned int) unsignedIntValue;

unsignedLongLongValue

-- (unsigned long long int) unsignedLongLongValue
+- (unsigned long long int) unsignedLongLongValue;

unsignedLongValue

-- (unsigned long int) unsignedLongValue
+- (unsigned long int) unsignedLongValue;

unsignedShortValue

-- (unsigned short int) unsignedShortValue
+- (unsigned short int) unsignedShortValue;

diff --git a/Documentation/gsdoc/NSNumberFormatter.gsdoc b/Documentation/gsdoc/NSNumberFormatter.gsdoc index 8505c809d..9b557c4b1 100644 --- a/Documentation/gsdoc/NSNumberFormatter.gsdoc +++ b/Documentation/gsdoc/NSNumberFormatter.gsdoc @@ -1,6 +1,6 @@ - - + + NSNumberFormatter diff --git a/Documentation/gsdoc/NSNumberFormatter.html b/Documentation/gsdoc/NSNumberFormatter.html index d72229cdb..3cb655747 100644 --- a/Documentation/gsdoc/NSNumberFormatter.html +++ b/Documentation/gsdoc/NSNumberFormatter.html @@ -58,162 +58,162 @@

allowsFloats

-- (BOOL) allowsFloats
+- (BOOL) allowsFloats;

attributedStringForNil

-- (NSAttributedString*) attributedStringForNil
+- (NSAttributedString*) attributedStringForNil;

attributedStringForNotANumber

-- (NSAttributedString*) attributedStringForNotANumber
+- (NSAttributedString*) attributedStringForNotANumber;

attributedStringForZero

-- (NSAttributedString*) attributedStringForZero
+- (NSAttributedString*) attributedStringForZero;

decimalSeparator

-- (NSString*) decimalSeparator
+- (NSString*) decimalSeparator;

format

-- (NSString*) format
+- (NSString*) format;

hasThousandSeparators

-- (BOOL) hasThousandSeparators
+- (BOOL) hasThousandSeparators;

localizesFormat

-- (BOOL) localizesFormat
+- (BOOL) localizesFormat;

maximum

-- (NSDecimalNumber*) maximum
+- (NSDecimalNumber*) maximum;

minimum

-- (NSDecimalNumber*) minimum
+- (NSDecimalNumber*) minimum;

negativeFormat

-- (NSString*) negativeFormat
+- (NSString*) negativeFormat;

positiveFormat

-- (NSString*) positiveFormat
+- (NSString*) positiveFormat;

roundingBehavior

-- (NSDecimalNumberHandler*) roundingBehavior
+- (NSDecimalNumberHandler*) roundingBehavior;

setAllowsFloats:

-- (void) setAllowsFloats: (BOOL)flag
+- (void) setAllowsFloats: (BOOL)flag;

setAttributedStringForNil:

-- (void) setAttributedStringForNil: (NSAttributedString*)newAttributedString
+- (void) setAttributedStringForNil: (NSAttributedString*)newAttributedString;

setAttributedStringForNotANumber:

-- (void) setAttributedStringForNotANumber: (NSAttributedString*)newAttributedString
+- (void) setAttributedStringForNotANumber: (NSAttributedString*)newAttributedString;

setAttributedStringForZero:

-- (void) setAttributedStringForZero: (NSAttributedString*)newAttributedString
+- (void) setAttributedStringForZero: (NSAttributedString*)newAttributedString;

setDecimalSeparator:

-- (void) setDecimalSeparator: (NSString*)newSeparator
+- (void) setDecimalSeparator: (NSString*)newSeparator;

setFormat:

-- (void) setFormat: (NSString*)aFormat
+- (void) setFormat: (NSString*)aFormat;

setHasThousandSeparators:

-- (void) setHasThousandSeparators: (BOOL)flag
+- (void) setHasThousandSeparators: (BOOL)flag;

setLocalizesFormat:

-- (void) setLocalizesFormat: (BOOL)flag
+- (void) setLocalizesFormat: (BOOL)flag;

setMaximum:

-- (void) setMaximum: (NSDecimalNumber*)aMaximum
+- (void) setMaximum: (NSDecimalNumber*)aMaximum;

setMinimum:

-- (void) setMinimum: (NSDecimalNumber*)aMinimum
+- (void) setMinimum: (NSDecimalNumber*)aMinimum;

setNegativeFormat:

-- (void) setNegativeFormat: (NSString*)aFormat
+- (void) setNegativeFormat: (NSString*)aFormat;

setPositiveFormat:

-- (void) setPositiveFormat: (NSString*)aFormat
+- (void) setPositiveFormat: (NSString*)aFormat;

setRoundingBehavior:

-- (void) setRoundingBehavior: (NSDecimalNumberHandler*)newRoundingBehavior
+- (void) setRoundingBehavior: (NSDecimalNumberHandler*)newRoundingBehavior;

setTextAttributesForNegativeValues:

-- (void) setTextAttributesForNegativeValues: (NSDictionary*)newAttributes
+- (void) setTextAttributesForNegativeValues: (NSDictionary*)newAttributes;

setTextAttributesForPositiveValues:

-- (void) setTextAttributesForPositiveValues: (NSDictionary*)newAttributes
+- (void) setTextAttributesForPositiveValues: (NSDictionary*)newAttributes;

setThousandSeparator:

-- (void) setThousandSeparator: (NSString*)newSeparator
+- (void) setThousandSeparator: (NSString*)newSeparator;

textAttributesForNegativeValues

-- (NSDictionary*) textAttributesForNegativeValues
+- (NSDictionary*) textAttributesForNegativeValues;

textAttributesForPositiveValues

-- (NSDictionary*) textAttributesForPositiveValues
+- (NSDictionary*) textAttributesForPositiveValues;

thousandSeparator

-- (NSString*) thousandSeparator
+- (NSString*) thousandSeparator;

diff --git a/Documentation/gsdoc/NSObject.gsdoc b/Documentation/gsdoc/NSObject.gsdoc index f22852286..b9ea06d21 100644 --- a/Documentation/gsdoc/NSObject.gsdoc +++ b/Documentation/gsdoc/NSObject.gsdoc @@ -1,6 +1,6 @@ - - + + NSObject diff --git a/Documentation/gsdoc/NSObject.html b/Documentation/gsdoc/NSObject.html index 5b96d0491..48e40ed89 100644 --- a/Documentation/gsdoc/NSObject.html +++ b/Documentation/gsdoc/NSObject.html @@ -70,37 +70,37 @@

alloc

-+ (id) alloc
++ (id) alloc;

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

cancelPreviousPerformRequestsWithTarget:selector:

-+ (void) cancelPreviousPerformRequestsWithTarget: (id)aTarget selector: (SEL)aSelector
++ (void) cancelPreviousPerformRequestsWithTarget: (id)aTarget selector: (SEL)aSelector;

class

-+ (Class) class
++ (Class) class;

conformsToProtocol:

-+ (BOOL) conformsToProtocol: (Protocol*)aProtocol
++ (BOOL) conformsToProtocol: (Protocol*)aProtocol;

copyWithZone:

-+ (id) copyWithZone: (NSZone*)zone
++ (id) copyWithZone: (NSZone*)zone;

description

-+ (NSString*) description
++ (NSString*) description;
The description factory method describes the class of the receiver. In the default GNUstep implementation, this @@ -108,7 +108,7 @@

descriptionWithLocale:

-+ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale
++ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale;
Standards: GNUstep
The default (NSOBject) implementation of this method simply calls @@ -117,7 +117,7 @@ Standards: GNUstep

descriptionWithLocale:indent:

-+ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level
++ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level;
Standards: GNUstep
The default (NSObject) implementation of this method simply calls @@ -126,7 +126,7 @@ Standards: GNUstep

descriptionWithLocale:indent:to:

-+ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output
++ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output;
Standards: GNUstep
The default (NSObject) implementation of this method simply calls @@ -135,97 +135,97 @@ Standards: GNUstep

initialize

-+ (void) initialize
++ (void) initialize;

instanceMethodForSelector:

-+ (IMP) instanceMethodForSelector: (SEL)aSelector
++ (IMP) instanceMethodForSelector: (SEL)aSelector;

instanceMethodSignatureForSelector:

-+ (NSMethodSignature*) instanceMethodSignatureForSelector: (SEL)aSelector
++ (NSMethodSignature*) instanceMethodSignatureForSelector: (SEL)aSelector;

instancesRespondToSelector:

-+ (BOOL) instancesRespondToSelector: (SEL)aSelector
++ (BOOL) instancesRespondToSelector: (SEL)aSelector;

load

-+ (void) load
++ (void) load;

mutableCopyWithZone:

-+ (id) mutableCopyWithZone: (NSZone*)zone
++ (id) mutableCopyWithZone: (NSZone*)zone;

new

-+ (id) new
++ (id) new;

poseAsClass:

-+ (void) poseAsClass: (Class)aClass
++ (void) poseAsClass: (Class)aClass;

setVersion:

-+ (void) setVersion: (int)aVersion
++ (void) setVersion: (int)aVersion;

superclass

-+ (Class) superclass
++ (Class) superclass;

version

-+ (int) version
++ (int) version;

awakeAfterUsingCoder:

-- (id) awakeAfterUsingCoder: (NSCoder*)aDecoder
+- (id) awakeAfterUsingCoder: (NSCoder*)aDecoder;

classForArchiver

-- (Class) classForArchiver
+- (Class) classForArchiver;

classForCoder

-- (Class) classForCoder
+- (Class) classForCoder;

classForPortCoder

-- (Class) classForPortCoder
+- (Class) classForPortCoder;

connection:handleRequest:

-- (BOOL) connection: (NSConnection*)connection handleRequest: (NSDistantObjectRequest*)doreq
+- (BOOL) connection: (NSConnection*)connection handleRequest: (NSDistantObjectRequest*)doreq;

copy

-- (id) copy
+- (id) copy;

dealloc

-- (void) dealloc
+- (void) dealloc;

description

-- (NSString*) description
+- (NSString*) description;

@@ -245,7 +245,7 @@ Standards: GNUstep


descriptionWithLocale:

-- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale
+- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale;
Standards: GNUstep
The default (NSOBject) implementation of this method simply calls @@ -254,7 +254,7 @@ Standards: GNUstep

descriptionWithLocale:indent:

-- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level
+- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level;
Standards: GNUstep
The default (NSObject) implementation of this method simply calls @@ -263,7 +263,7 @@ Standards: GNUstep

descriptionWithLocale:indent:to:

-- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output
+- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output;
Standards: GNUstep
The default (NSObject) implementation of this method simply calls @@ -279,67 +279,67 @@ Standards: GNUstep

doesNotRecognizeSelector:

-- (void) doesNotRecognizeSelector: (SEL)aSelector
+- (void) doesNotRecognizeSelector: (SEL)aSelector;

forwardInvocation:

-- (void) forwardInvocation: (NSInvocation*)anInvocation
+- (void) forwardInvocation: (NSInvocation*)anInvocation;

hash

-- (unsigned int) hash
+- (unsigned int) hash;

init

-- (id) init
+- (id) init;

isEqual:

-- (BOOL) isEqual: (id)anObject
+- (BOOL) isEqual: (id)anObject;

methodForSelector:

-- (IMP) methodForSelector: (SEL)aSelector
+- (IMP) methodForSelector: (SEL)aSelector;

methodSignatureForSelector:

-- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector
+- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector;

mutableCopy

-- (id) mutableCopy
+- (id) mutableCopy;

performSelector:withObject:

-- (void) performSelector: (SEL)aSelector withObject: (id)anArgument
+- (void) performSelector: (SEL)aSelector withObject: (id)anArgument;

performSelector:withObject:afterDelay:inModes:

-- (void) performSelector: (SEL)aSelector withObject: (id)anArgument afterDelay: (NSTimeInterval)delay inModes: (NSArray*)modes
+- (void) performSelector: (SEL)aSelector withObject: (id)anArgument afterDelay: (NSTimeInterval)delay inModes: (NSArray*)modes;

replacementObjectForArchiver:

-- (id) replacementObjectForArchiver: (NSArchiver*)anArchiver
+- (id) replacementObjectForArchiver: (NSArchiver*)anArchiver;

replacementObjectForCoder:

-- (id) replacementObjectForCoder: (NSCoder*)aCoder
+- (id) replacementObjectForCoder: (NSCoder*)aCoder;

replacementObjectForPortCoder:

-- (id) replacementObjectForPortCoder: (NSPortCoder*)aCoder
+- (id) replacementObjectForPortCoder: (NSPortCoder*)aCoder;

diff --git a/Documentation/gsdoc/NSPort.gsdoc b/Documentation/gsdoc/NSPort.gsdoc index 68eaf75d3..141c1a028 100644 --- a/Documentation/gsdoc/NSPort.gsdoc +++ b/Documentation/gsdoc/NSPort.gsdoc @@ -1,6 +1,6 @@ - - + + NSPort diff --git a/Documentation/gsdoc/NSPort.html b/Documentation/gsdoc/NSPort.html index 6b01270aa..2d402853b 100644 --- a/Documentation/gsdoc/NSPort.html +++ b/Documentation/gsdoc/NSPort.html @@ -40,72 +40,72 @@

port

-+ (NSPort*) port
++ (NSPort*) port;

portWithMachPort:

-+ (NSPort*) portWithMachPort: (int)machPort
++ (NSPort*) portWithMachPort: (int)machPort;

addConnection:toRunLoop:forMode:

-- (void) addConnection: (NSConnection*)connection toRunLoop: (NSRunLoop*)runLoop forMode: (NSString*)mode
+- (void) addConnection: (NSConnection*)connection toRunLoop: (NSRunLoop*)runLoop forMode: (NSString*)mode;

delegate

-- (id) delegate
+- (id) delegate;

initWithMachPort:

-- (id) initWithMachPort: (int)machPort
+- (id) initWithMachPort: (int)machPort;

invalidate

-- (void) invalidate
+- (void) invalidate;

isValid

-- (BOOL) isValid
+- (BOOL) isValid;

machPort

-- (int) machPort
+- (int) machPort;

removeConnection:fromRunLoop:

-- (void) removeConnection: (NSConnection*)connection fromRunLoop: (NSRunLoop*)runLoop
+- (void) removeConnection: (NSConnection*)connection fromRunLoop: (NSRunLoop*)runLoop;

reservedSpaceLength

-- (unsigned int) reservedSpaceLength
+- (unsigned int) reservedSpaceLength;

setDelegate:

-- (void) setDelegate: (id)anObject
+- (void) setDelegate: (id)anObject;

handleMachMessage:

-- (void) handleMachMessage: (void*)machMessage
+- (void) handleMachMessage: (void*)machMessage;

handlePortMessage:

-- (void) handlePortMessage: (NSPortMessage*)portMessage
+- (void) handlePortMessage: (NSPortMessage*)portMessage;

limitDateForMode:

-- (NSDate*) limitDateForMode: (NSString*)mode
+- (NSDate*) limitDateForMode: (NSString*)mode;

diff --git a/Documentation/gsdoc/NSPortCoder.gsdoc b/Documentation/gsdoc/NSPortCoder.gsdoc index a174421b5..53519b842 100644 --- a/Documentation/gsdoc/NSPortCoder.gsdoc +++ b/Documentation/gsdoc/NSPortCoder.gsdoc @@ -1,6 +1,6 @@ - - + + NSPortCoder diff --git a/Documentation/gsdoc/NSPortCoder.html b/Documentation/gsdoc/NSPortCoder.html index 5f799975b..b8108aa79 100644 --- a/Documentation/gsdoc/NSPortCoder.html +++ b/Documentation/gsdoc/NSPortCoder.html @@ -33,37 +33,37 @@

portCoderWithReceivePort:sendPort:components:

-+ (id) portCoderWithReceivePort: (NSPort*)receivePort sendPort: (NSPort*)sendPort components: (NSArray)components
++ (id) portCoderWithReceivePort: (NSPort*)receivePort sendPort: (NSPort*)sendPort components: (NSArray)components;

connection

-- (NSConnection*) connection
+- (NSConnection*) connection;

decodePortObject

-- (NSPort*) decodePortObject
+- (NSPort*) decodePortObject;

dispatch

-- (void) dispatch
+- (void) dispatch;

encodePortObject:

-- (void) encodePortObject: (NSPort*)aPort
+- (void) encodePortObject: (NSPort*)aPort;

isBycopy

-- (BOOL) isBycopy
+- (BOOL) isBycopy;

isByref

-- (BOOL) isByref
+- (BOOL) isByref;

diff --git a/Documentation/gsdoc/NSPortMessage.gsdoc b/Documentation/gsdoc/NSPortMessage.gsdoc index f4087712d..b2474b211 100644 --- a/Documentation/gsdoc/NSPortMessage.gsdoc +++ b/Documentation/gsdoc/NSPortMessage.gsdoc @@ -1,6 +1,6 @@ - - + + NSPortMessage diff --git a/Documentation/gsdoc/NSPortMessage.html b/Documentation/gsdoc/NSPortMessage.html index 6f953abf0..ad24c95d7 100644 --- a/Documentation/gsdoc/NSPortMessage.html +++ b/Documentation/gsdoc/NSPortMessage.html @@ -34,42 +34,42 @@

components

-- (NSArray*) components
+- (NSArray*) components;

initWithMachMessage:

-- (id) initWithMachMessage: (void*)buffer
+- (id) initWithMachMessage: (void*)buffer;

initWithSendPort:receivePort:

-- (id) initWithSendPort: (NSPort*)sendPort receivePort: (NSPort*)receivePort
+- (id) initWithSendPort: (NSPort*)sendPort receivePort: (NSPort*)receivePort;

msgid

-- (unsigned int) msgid
+- (unsigned int) msgid;

receivePort

-- (NSPort*) receivePort
+- (NSPort*) receivePort;

sendBeforeDate:

-- (BOOL) sendBeforeDate: (NSDate*)aDate
+- (BOOL) sendBeforeDate: (NSDate*)aDate;

sendPort

-- (NSPort*) sendPort
+- (NSPort*) sendPort;

setMsgid:

-- (void) setMsgid: (unsigned int)msgid
+- (void) setMsgid: (unsigned int)msgid;

diff --git a/Documentation/gsdoc/NSPortNameServer.gsdoc b/Documentation/gsdoc/NSPortNameServer.gsdoc index 44a2b86a3..f1750536b 100644 --- a/Documentation/gsdoc/NSPortNameServer.gsdoc +++ b/Documentation/gsdoc/NSPortNameServer.gsdoc @@ -1,6 +1,6 @@ - - + + NSPortNameServer diff --git a/Documentation/gsdoc/NSPortNameServer.html b/Documentation/gsdoc/NSPortNameServer.html index 264b23488..865994739 100644 --- a/Documentation/gsdoc/NSPortNameServer.html +++ b/Documentation/gsdoc/NSPortNameServer.html @@ -31,27 +31,27 @@

defaultPortNameServer

-+ (id) defaultPortNameServer
++ (id) defaultPortNameServer;

portForName:

-- (NSPort*) portForName: (NSString*)portName
+- (NSPort*) portForName: (NSString*)portName;

portForName:

-- (NSPort*) portForName: (NSString*)portName
+- (NSPort*) portForName: (NSString*)portName;

registerPort:forName:

-- (BOOL) registerPort: (NSPort*)aPort forName: (NSString*)portName
+- (BOOL) registerPort: (NSPort*)aPort forName: (NSString*)portName;

removePortForName:

-- (void) removePortForName: (NSString*)portName
+- (void) removePortForName: (NSString*)portName;

diff --git a/Documentation/gsdoc/NSProcessInfo.gsdoc b/Documentation/gsdoc/NSProcessInfo.gsdoc index b377fc22c..32b90e1eb 100644 --- a/Documentation/gsdoc/NSProcessInfo.gsdoc +++ b/Documentation/gsdoc/NSProcessInfo.gsdoc @@ -1,6 +1,6 @@ - - + + NSProcessInfo diff --git a/Documentation/gsdoc/NSProcessInfo.html b/Documentation/gsdoc/NSProcessInfo.html index 382d5a2a3..cc15cc94d 100644 --- a/Documentation/gsdoc/NSProcessInfo.html +++ b/Documentation/gsdoc/NSProcessInfo.html @@ -35,47 +35,47 @@

processInfo

-+ (NSProcessInfo*) processInfo
++ (NSProcessInfo*) processInfo;

arguments

-- (NSArray*) arguments
+- (NSArray*) arguments;

environment

-- (NSDictionary*) environment
+- (NSDictionary*) environment;

globallyUniqueString

-- (NSString*) globallyUniqueString
+- (NSString*) globallyUniqueString;

hostName

-- (NSString*) hostName
+- (NSString*) hostName;

operatingSystem

-- (unsigned int) operatingSystem
+- (unsigned int) operatingSystem;

operatingSystemName

-- (NSString*) operatingSystemName
+- (NSString*) operatingSystemName;

processName

-- (NSString*) processName
+- (NSString*) processName;

setProcessName:

-- (void) setProcessName: (NSString*)newName
+- (void) setProcessName: (NSString*)newName;

diff --git a/Documentation/gsdoc/NSProtocolChecker.gsdoc b/Documentation/gsdoc/NSProtocolChecker.gsdoc index d0b515b24..b08e5377a 100644 --- a/Documentation/gsdoc/NSProtocolChecker.gsdoc +++ b/Documentation/gsdoc/NSProtocolChecker.gsdoc @@ -1,6 +1,6 @@ - - + + NSProtocolChecker diff --git a/Documentation/gsdoc/NSProtocolChecker.html b/Documentation/gsdoc/NSProtocolChecker.html index c2435c7a3..96bd238c7 100644 --- a/Documentation/gsdoc/NSProtocolChecker.html +++ b/Documentation/gsdoc/NSProtocolChecker.html @@ -30,32 +30,32 @@

protocolCheckerWithTarget:

-+ (id) protocolCheckerWithTarget: (NSObject*)anObject
++ (id) protocolCheckerWithTarget: (NSObject*)anObject;

forwardInvocation:

-- (void) forwardInvocation: (NSInvocation*)anInvocation
+- (void) forwardInvocation: (NSInvocation*)anInvocation;

initWithTarget:

-- (id) initWithTarget: (NSObject*)anObject
+- (id) initWithTarget: (NSObject*)anObject;

methodDescriptionForSelector:

-- (structobjc_method_description*) methodDescriptionForSelector: (SEL)aSelector
+- (structobjc_method_description*) methodDescriptionForSelector: (SEL)aSelector;

protocol

-- (Protocol*) protocol
+- (Protocol*) protocol;

target

-- (NSObject*) target
+- (NSObject*) target;

diff --git a/Documentation/gsdoc/NSProxy.gsdoc b/Documentation/gsdoc/NSProxy.gsdoc index f7062cad6..2dbf7f0cf 100644 --- a/Documentation/gsdoc/NSProxy.gsdoc +++ b/Documentation/gsdoc/NSProxy.gsdoc @@ -1,6 +1,6 @@ - - + + NSProxy diff --git a/Documentation/gsdoc/NSProxy.html b/Documentation/gsdoc/NSProxy.html index c44305b6d..30c26a19a 100644 --- a/Documentation/gsdoc/NSProxy.html +++ b/Documentation/gsdoc/NSProxy.html @@ -40,77 +40,77 @@

alloc

-+ (id) alloc
++ (id) alloc;

allocWithZone:

-+ (id) allocWithZone: (NSZone*)zone
++ (id) allocWithZone: (NSZone*)zone;

class

-+ (Class) class
++ (Class) class;

load

-+ (void) load
++ (void) load;

respondsToSelector:

-+ (BOOL) respondsToSelector: (SEL)aSelector
++ (BOOL) respondsToSelector: (SEL)aSelector;

class

-- (Class) class
+- (Class) class;

conformsToProtocol:

-- (BOOL) conformsToProtocol: (Protocol)aProtocol
+- (BOOL) conformsToProtocol: (Protocol)aProtocol;

dealloc

-- (void) dealloc
+- (void) dealloc;

description

-- (NSString*) description
+- (NSString*) description;

forwardInvocation:

-- (void) forwardInvocation: (NSInvocation*)anInvocation
+- (void) forwardInvocation: (NSInvocation*)anInvocation;

isKindOfClass:

-- (BOOL) isKindOfClass: (Class)aClass
+- (BOOL) isKindOfClass: (Class)aClass;

isMemberOfClass:

-- (BOOL) isMemberOfClass: (Class)aClass
+- (BOOL) isMemberOfClass: (Class)aClass;

isProxy

-- (BOOL) isProxy
+- (BOOL) isProxy;

methodSignatureForSelector:

-- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector
+- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector;

respondsToSelector:

-- (BOOL) respondsToSelector: (SEL)aSelector
+- (BOOL) respondsToSelector: (SEL)aSelector;

diff --git a/Documentation/gsdoc/NSRecursiveLock.gsdoc b/Documentation/gsdoc/NSRecursiveLock.gsdoc index f1a604a62..3edf12fcf 100644 --- a/Documentation/gsdoc/NSRecursiveLock.gsdoc +++ b/Documentation/gsdoc/NSRecursiveLock.gsdoc @@ -1,6 +1,6 @@ - - + + NSRecursiveLock diff --git a/Documentation/gsdoc/NSRecursiveLock.html b/Documentation/gsdoc/NSRecursiveLock.html index 60d6afc84..307b8ab4d 100644 --- a/Documentation/gsdoc/NSRecursiveLock.html +++ b/Documentation/gsdoc/NSRecursiveLock.html @@ -28,12 +28,12 @@

lockBeforeDate:

-- (BOOL) lockBeforeDate: (NSDate*)limit
+- (BOOL) lockBeforeDate: (NSDate*)limit;

tryLock

-- (BOOL) tryLock
+- (BOOL) tryLock;

diff --git a/Documentation/gsdoc/NSRunLoop.gsdoc b/Documentation/gsdoc/NSRunLoop.gsdoc index 19d0d382b..2bff489ef 100644 --- a/Documentation/gsdoc/NSRunLoop.gsdoc +++ b/Documentation/gsdoc/NSRunLoop.gsdoc @@ -1,6 +1,6 @@ - - + + NSRunLoop diff --git a/Documentation/gsdoc/NSRunLoop.html b/Documentation/gsdoc/NSRunLoop.html index 6bc59d050..1dd98eed4 100644 --- a/Documentation/gsdoc/NSRunLoop.html +++ b/Documentation/gsdoc/NSRunLoop.html @@ -39,67 +39,67 @@

currentRunLoop

-+ (NSRunLoop*) currentRunLoop
++ (NSRunLoop*) currentRunLoop;

acceptInputForMode:beforeDate:

-- (void) acceptInputForMode: (NSString*)mode beforeDate: (NSDate*)limitDate
+- (void) acceptInputForMode: (NSString*)mode beforeDate: (NSDate*)limitDate;

addPort:forMode:

-- (void) addPort: (NSPort*)aPort forMode: (NSString*)mode
+- (void) addPort: (NSPort*)aPort forMode: (NSString*)mode;

addTimer:forMode:

-- (void) addTimer: (NSTimer*)aTimer forMode: (NSString*)mode
+- (void) addTimer: (NSTimer*)aTimer forMode: (NSString*)mode;

cancelPerformSelector:target:argument:

-- (void) cancelPerformSelector: (SEL)aSelector target: (id)target argument: (id)anArgument
+- (void) cancelPerformSelector: (SEL)aSelector target: (id)target argument: (id)anArgument;

configureAsServer

-- (void) configureAsServer
+- (void) configureAsServer;

currentMode

-- (NSString*) currentMode
+- (NSString*) currentMode;

limitDateForMode:

-- (NSDate*) limitDateForMode: (NSString*)mode
+- (NSDate*) limitDateForMode: (NSString*)mode;

performSelector:target:argument:order:modes:

-- (void) performSelector: (SEL)aSelector target: (id)target argument: (id)anArgument order: (unsigned int)order modes: (NSArray*)modes
+- (void) performSelector: (SEL)aSelector target: (id)target argument: (id)anArgument order: (unsigned int)order modes: (NSArray*)modes;

removePort:forMode:

-- (void) removePort: (NSPort*)aPort forMode: (NSString*)mode
+- (void) removePort: (NSPort*)aPort forMode: (NSString*)mode;

run

-- (void) run
+- (void) run;

runMode:beforeDate:

-- (BOOL) runMode: (NSString*)mode beforeDate: (NSDate*)limitDate
+- (BOOL) runMode: (NSString*)mode beforeDate: (NSDate*)limitDate;

runUntilDate:

-- (void) runUntilDate: (NSDate*)limitDate
+- (void) runUntilDate: (NSDate*)limitDate;

diff --git a/Documentation/gsdoc/NSScanner.gsdoc b/Documentation/gsdoc/NSScanner.gsdoc index 8da1c7227..0ca8fbb8c 100644 --- a/Documentation/gsdoc/NSScanner.gsdoc +++ b/Documentation/gsdoc/NSScanner.gsdoc @@ -1,6 +1,6 @@ - + NSScanner @@ -35,8 +35,9 @@ aString Returns an NSScanner instance set up to scan aString - (using initWithString:) and with a locale set the default locale - (using setLocale:). + (using initWithString:) + and with a locale set the default locale + (using setLocale:). @@ -44,7 +45,8 @@ aString Returns an NSScanner instance set up to scan aString - (using initWithString:) and with no locale set. + (using initWithString:) + and with no locale set. @@ -69,7 +71,7 @@ The default for this is the whitespaceAndNewlineCharacterSet. - + initWithString: aString @@ -288,7 +290,7 @@ The default for this is the whitespaceAndNewlineCharacterSet. - + setLocale: aLocale diff --git a/Documentation/gsdoc/NSScanner.html b/Documentation/gsdoc/NSScanner.html index c72b880ed..216580537 100644 --- a/Documentation/gsdoc/NSScanner.html +++ b/Documentation/gsdoc/NSScanner.html @@ -43,41 +43,43 @@
  • +scannerWithString:
  • -caseSensitive
  • -charactersToBeSkipped -
  • -initWithString: -
  • -isAtEnd -
  • -locale -
  • -scanCharactersFromSet:intoString: -
  • -scanDecimal: -
  • -scanDouble: -
  • -scanFloat: -
  • -scanHexInt: -
  • -scanInt: -
  • -scanLocation -
  • -scanLongLong: -
  • -scanRadixUnsignedInt: -
  • -scanString:intoString: -
  • -scanUpToCharactersFromSet:intoString: -
  • -scanUpToString:intoString: -
  • -setCaseSensitive: -
  • -setCharactersToBeSkipped: -
  • -setLocale: -
  • -setScanLocation: -
  • -string +
  • -initWithString: +
  • -isAtEnd +
  • -locale +
  • -scanCharactersFromSet:intoString: +
  • -scanDecimal: +
  • -scanDouble: +
  • -scanFloat: +
  • -scanHexInt: +
  • -scanInt: +
  • -scanLocation +
  • -scanLongLong: +
  • -scanRadixUnsignedInt: +
  • -scanString:intoString: +
  • -scanUpToCharactersFromSet:intoString: +
  • -scanUpToString:intoString: +
  • -setCaseSensitive: +
  • -setCharactersToBeSkipped: +
  • -setLocale: +
  • -setScanLocation: +
  • -string

    localizedScannerWithString:

    + (id) localizedScannerWithString: (NSString*)aString;
    Returns an NSScanner instance set up to scan aString - (using initWithString:) and with a locale set the default locale - (using setLocale:). + (using initWithString:) + and with a locale set the default locale + (using setLocale:).

    scannerWithString:

    + (id) scannerWithString: (NSString*)aString;
    Returns an NSScanner instance set up to scan aString - (using initWithString:) and with no locale set. + (using initWithString:) + and with no locale set.

    caseSensitive

    @@ -102,7 +104,8 @@ The default for this is the whitespaceAndNewlineCharacterSet.
    -

    initWithString:

    +

    initWithString:

    +This is the designated initialiser
    - (id) initWithString: (NSString*)aString;
    Initialises the scanner to scan aString. The GNUstep @@ -114,7 +117,7 @@ Returns the scanner object.
    -

    isAtEnd

    +

    isAtEnd

    - (BOOL) isAtEnd;
    Returns YES if there are no characters left to be scanned in the @@ -122,7 +125,7 @@ characters to be skipped). Returns NO otherwise.
    -

    locale

    +

    locale

    - (NSDictionary*) locale;
    Returns the locale set for the scanner, or nil if no locale has @@ -131,7 +134,7 @@ numbers.
    -

    scanCharactersFromSet:intoString:

    +

    scanCharactersFromSet:intoString:

    - (BOOL) scanCharactersFromSet: (NSCharacterSet*)set intoString: (NSString**)stringValue;
    After initial skipping (if any), this method scans any characters @@ -142,14 +145,14 @@ stored in a string returned in this value.
    -

    scanDecimal:

    +

    scanDecimal:

    - (BOOL) scanDecimal: (NSDecimal*)decimalValue;
    Standards: MacOS-X NotOpenStep
    Not implemented.
    -

    scanDouble:

    +

    scanDouble:

    - (BOOL) scanDouble: (double*)doubleValue;
    After initial skipping (if any), this method scans a double value, @@ -163,7 +166,7 @@ Standards: MacOS-X NotOpenStep
    Scans past any excess digits
    -

    scanFloat:

    +

    scanFloat:

    - (BOOL) scanFloat: (float*)floatValue;
    After initial skipping (if any), this method scans a float value, @@ -177,7 +180,7 @@ Standards: MacOS-X NotOpenStep
    Scans past any excess digits
    -

    scanHexInt:

    +

    scanHexInt:

    - (BOOL) scanHexInt: (unsigned int*)intValue;
    After initial skipping (if any), this method scans a hexadecimal @@ -191,7 +194,7 @@ Standards: MacOS-X NotOpenStep
    Scans past any excess digits
    -

    scanInt:

    +

    scanInt:

    - (BOOL) scanInt: (int*)intValue;
    After initial skipping (if any), this method scans a integer value, @@ -204,7 +207,7 @@ Standards: MacOS-X NotOpenStep
    Scans past any excess digits
    -

    scanLocation

    +

    scanLocation

    - (unsigned int) scanLocation;
    Returns the current position that the scanner has reached in @@ -212,7 +215,7 @@ Standards: MacOS-X NotOpenStep
    operation will begin.
    -

    scanLongLong:

    +

    scanLongLong:

    - (BOOL) scanLongLong: (longlong*)longLongValue;
    After initial skipping (if any), this method scans a long @@ -227,7 +230,7 @@ Standards: MacOS-X NotOpenStep
    Scans past any excess digits
    -

    scanRadixUnsignedInt:

    +

    scanRadixUnsignedInt:

    - (BOOL) scanRadixUnsignedInt: (unsigned int*)intValue;
    Standards: GNUstep NotOpenStep NotMacOS-X
    @@ -244,7 +247,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    Scans past any excess digits
    -

    scanString:intoString:

    +

    scanString:intoString:

    - (BOOL) scanString: (NSString*)aString intoString: (NSString**)stringValue;
    After initial skipping (if any), this method scans for @@ -254,7 +257,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    Returns YES if anything is scanned, NO otherwise.
    -

    scanUpToCharactersFromSet:intoString:

    +

    scanUpToCharactersFromSet:intoString:

    - (BOOL) scanUpToCharactersFromSet: (NSCharacterSet*)set intoString: (NSString**)stringValue;
    After initial skipping (if any), this method scans characters until @@ -264,7 +267,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    Returns YES if anything is scanned, NO otherwise.
    -

    scanUpToString:intoString:

    +

    scanUpToString:intoString:

    - (BOOL) scanUpToString: (NSString*)aString intoString: (NSString**)stringValue;
    After initial skipping (if any), this method scans characters until @@ -276,7 +279,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    Returns YES if anything is scanned, NO otherwise.
    -

    setCaseSensitive:

    +

    setCaseSensitive:

    - (void) setCaseSensitive: (BOOL)flag;
    Sets the case sensitivity of the scanner. @@ -287,7 +290,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    The default is for a scanner to not be case sensitive.
    -

    setCharactersToBeSkipped:

    +

    setCharactersToBeSkipped:

    - (void) setCharactersToBeSkipped: (NSCharacterSet*)skipSet;
    Sets the set of characters that the scanner will skip over at the @@ -299,14 +302,14 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    The default for this is the whitespaceAndNewlineCharacterSet.
    -

    setLocale:

    +

    setLocale:

    - (void) setLocale: (NSDictionary*)aLocale;
    This method sets the locale used by the scanner to aLocale. The locale may be set to nil.
    -

    setScanLocation:

    +

    setScanLocation:

    - (void) setScanLocation: (unsigned int)index;
    This method sets the location in the scanned string at which the @@ -315,7 +318,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
    scanned string.
    -

    string

    +

    string

    - (NSString*) string;
    Returns the string used by the scanner. diff --git a/Documentation/gsdoc/NSSerializer.gsdoc b/Documentation/gsdoc/NSSerializer.gsdoc index 12bdd2254..6eff98191 100644 --- a/Documentation/gsdoc/NSSerializer.gsdoc +++ b/Documentation/gsdoc/NSSerializer.gsdoc @@ -1,6 +1,6 @@ - - + + NSSerializer diff --git a/Documentation/gsdoc/NSSerializer.html b/Documentation/gsdoc/NSSerializer.html index 6e3e9269b..45ea9f347 100644 --- a/Documentation/gsdoc/NSSerializer.html +++ b/Documentation/gsdoc/NSSerializer.html @@ -28,12 +28,12 @@

    serializePropertyList:

    -+ (NSData*) serializePropertyList: (id)aPropertyList
    ++ (NSData*) serializePropertyList: (id)aPropertyList;

    serializePropertyList:

    -+ (void) serializePropertyList: (id)aPropertyList
    ++ (void) serializePropertyList: (id)aPropertyList;

    diff --git a/Documentation/gsdoc/NSSet.gsdoc b/Documentation/gsdoc/NSSet.gsdoc index 4005a0580..3af03fbdd 100644 --- a/Documentation/gsdoc/NSSet.gsdoc +++ b/Documentation/gsdoc/NSSet.gsdoc @@ -1,6 +1,6 @@ - - + + NSSet diff --git a/Documentation/gsdoc/NSSet.html b/Documentation/gsdoc/NSSet.html index 8bc426a7b..0ea0081ac 100644 --- a/Documentation/gsdoc/NSSet.html +++ b/Documentation/gsdoc/NSSet.html @@ -53,137 +53,137 @@

    allocWithZone:

    -+ (id) allocWithZone: (NSZone*)zone
    ++ (id) allocWithZone: (NSZone*)zone;

    set

    -+ (id) set
    ++ (id) set;

    setWithArray:

    -+ (id) setWithArray: (NSArray*)anArray
    ++ (id) setWithArray: (NSArray*)anArray;

    setWithObject:

    -+ (id) setWithObject: (id)anObject
    ++ (id) setWithObject: (id)anObject;

    setWithObjects:

    -+ (id) setWithObjects: (id)anObject, ...
    ++ (id) setWithObjects: (id)anObject, ...;

    setWithObjects:count:

    -+ (id) setWithObjects: (id*)objects count: (unsigned int)count
    ++ (id) setWithObjects: (id*)objects count: (unsigned int)count;

    setWithArray:

    -+ (id) setWithArray: (NSSet*)aSet
    ++ (id) setWithArray: (NSSet*)aSet;

    allObjects

    -- (NSArray*) allObjects
    +- (NSArray*) allObjects;

    anyObject

    -- (id) anyObject
    +- (id) anyObject;

    containsObject:

    -- (BOOL) containsObject: (id)anObject
    +- (BOOL) containsObject: (id)anObject;

    count

    -- (unsigned int) count
    +- (unsigned int) count;

    description

    -- (NSString*) description
    +- (NSString*) description;

    descriptionWithLocale:

    -- (NSString*) descriptionWithLocale: (NSDictionary*)locale
    +- (NSString*) descriptionWithLocale: (NSDictionary*)locale;

    initWithArray:

    -- (id) initWithArray: (NSArray*)array
    +- (id) initWithArray: (NSArray*)array;

    initWithObjects:

    -- (id) initWithObjects: (id)anObject, ...
    +- (id) initWithObjects: (id)anObject, ...;

    initWithObjects:count:

    -- (id) initWithObjects: (id*)objects count: (unsigned int)count
    +- (id) initWithObjects: (id*)objects count: (unsigned int)count;

    initWithSet:

    -- (id) initWithSet: (NSSet*)otherSet
    +- (id) initWithSet: (NSSet*)otherSet;

    initWithSet:copyItems:

    -- (id) initWithSet: (NSSet*)otherSet copyItems: (BOOL)flag
    +- (id) initWithSet: (NSSet*)otherSet copyItems: (BOOL)flag;

    intersectsSet:

    -- (BOOL) intersectsSet: (NSSet*)otherSet
    +- (BOOL) intersectsSet: (NSSet*)otherSet;

    isEqualToSet:

    -- (BOOL) isEqualToSet: (NSSet*)otherSet
    +- (BOOL) isEqualToSet: (NSSet*)otherSet;

    isSubsetOfSet:

    -- (BOOL) isSubsetOfSet: (NSSet*)otherSet
    +- (BOOL) isSubsetOfSet: (NSSet*)otherSet;

    makeObjectsPerform:

    -- (void) makeObjectsPerform: (SEL)aSelector
    +- (void) makeObjectsPerform: (SEL)aSelector;

    makeObjectsPerformSelector:

    -- (void) makeObjectsPerformSelector: (SEL)aSelector
    +- (void) makeObjectsPerformSelector: (SEL)aSelector;

    makeObjectsPerformSelector:withObject:

    -- (void) makeObjectsPerformSelector: (SEL)aSelector withObject: (id)anObject
    +- (void) makeObjectsPerformSelector: (SEL)aSelector withObject: (id)anObject;

    makeObjectsPerform:withObject:

    -- (void) makeObjectsPerform: (SEL)aSelector withObject: (id)anObject
    +- (void) makeObjectsPerform: (SEL)aSelector withObject: (id)anObject;

    member:

    -- (id) member: (id)anObject
    +- (id) member: (id)anObject;

    objectEnumerator

    -- (NSEnumerator*) objectEnumerator
    +- (NSEnumerator*) objectEnumerator;

    diff --git a/Documentation/gsdoc/NSString.gsdoc b/Documentation/gsdoc/NSString.gsdoc index 7d3569b76..db032f237 100644 --- a/Documentation/gsdoc/NSString.gsdoc +++ b/Documentation/gsdoc/NSString.gsdoc @@ -1,6 +1,6 @@ - - + + NSString diff --git a/Documentation/gsdoc/NSString.html b/Documentation/gsdoc/NSString.html index 6b959ead1..a0776bd91 100644 --- a/Documentation/gsdoc/NSString.html +++ b/Documentation/gsdoc/NSString.html @@ -126,7 +126,7 @@ A constant NSString can be created using the following syntax: @"..."

    availableStringEncodings

    -+ (const NSStringEncoding*) availableStringEncodings
    ++ (const NSStringEncoding*) availableStringEncodings;

    Returns an array of all available string encodings, terminated by a null value.

    @@ -134,7 +134,7 @@ Returns an array of all available string encodings, terminated by a null value.<

    defaultCStringEncoding

    -+ (NSStringEncoding) defaultCStringEncoding
    ++ (NSStringEncoding) defaultCStringEncoding;

    Returns the encoding used for any method accepting a C string.

    @@ -142,7 +142,7 @@ Returns the encoding used for any method accepting a C string.


    localizedNameOfStringEncoding:

    -+ (NSString*) localizedNameOfStringEncoding: (NSStringEncoding)encoding
    ++ (NSString*) localizedNameOfStringEncoding: (NSStringEncoding)encoding;

    Returns the localized name of the encoding specified by encoding.

    @@ -150,427 +150,427 @@ Returns the localized name of the encoding specified by encoding.


    localizedStringWithFormat:

    -+ (NSString*) localizedStringWithFormat: (NSString*)format,
    ++ (NSString*) localizedStringWithFormat: (NSString*)format,;

    pathWithComponents:

    -+ (NSString*) pathWithComponents: (NSArray*)components
    ++ (NSString*) pathWithComponents: (NSArray*)components;

    string

    -+ (id) string
    ++ (id) string;

    stringWithCharacters:length:

    -+ (id) stringWithCharacters: (const unichar*)chars length: (unsigned int)length
    ++ (id) stringWithCharacters: (const unichar*)chars length: (unsigned int)length;

    stringWithContentsOfFile:

    -+ (id) stringWithContentsOfFile: (NSString*)path
    ++ (id) stringWithContentsOfFile: (NSString*)path;

    stringWithCString:

    -+ (id) stringWithCString: (const char*)cString
    ++ (id) stringWithCString: (const char*)cString;

    stringWithCString:

    -+ (id) stringWithCString: (const char*)cString
    ++ (id) stringWithCString: (const char*)cString;

    stringWithFormat:

    -+ (id) stringWithFormat: (NSString*)format,
    ++ (id) stringWithFormat: (NSString*)format,;

    stringWithString:

    -+ (id) stringWithString: (NSString*)aString
    ++ (id) stringWithString: (NSString*)aString;

    canBeConvertedToEncoding:

    -- (BOOL) canBeConvertedToEncoding: (NSStringEncoding)encoding
    +- (BOOL) canBeConvertedToEncoding: (NSStringEncoding)encoding;

    capitalizedString

    -- (NSString*) capitalizedString
    +- (NSString*) capitalizedString;

    caseInsensitiveCompare:

    -- (NSComparisonResult) caseInsensitiveCompare: (NSString*)aString
    +- (NSComparisonResult) caseInsensitiveCompare: (NSString*)aString;

    characterAtIndex:

    -- (unichar) characterAtIndex: (unsigned int)index
    +- (unichar) characterAtIndex: (unsigned int)index;

    commonPrefixWithString:

    -- (NSString*) commonPrefixWithString: (NSString*)aString
    +- (NSString*) commonPrefixWithString: (NSString*)aString;

    compare:

    -- (NSComparisonResult) compare: (NSString*)aString
    +- (NSComparisonResult) compare: (NSString*)aString;

    compare:

    -- (NSComparisonResult) compare: (NSString*)aString
    +- (NSComparisonResult) compare: (NSString*)aString;

    compare:options:range:

    -- (NSComparisonResult) compare: (NSString*)aString options: (unsigned int)mask range: (NSRange)aRange
    +- (NSComparisonResult) compare: (NSString*)aString options: (unsigned int)mask range: (NSRange)aRange;

    completePathIntoString:caseSensitive:matchesIntoArray:

    -- (unsigned int) completePathIntoString: (NSString**)outputName caseSensitive: (BOOL)flag matchesIntoArray: (NSArray**)outputArray
    +- (unsigned int) completePathIntoString: (NSString**)outputName caseSensitive: (BOOL)flag matchesIntoArray: (NSArray**)outputArray;

    componentsSeparatedByString:

    -- (NSArray*) componentsSeparatedByString: (NSString*)separator
    +- (NSArray*) componentsSeparatedByString: (NSString*)separator;

    cString

    -- (const char*) cString
    +- (const char*) cString;

    cStringLength

    -- (unsigned int) cStringLength
    +- (unsigned int) cStringLength;

    dataUsingEncoding:

    -- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding
    +- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding;

    dataUsingEncoding:allowLossyConversion:

    -- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding allowLossyConversion: (BOOL)flag
    +- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding allowLossyConversion: (BOOL)flag;

    description

    -- (NSString*) description
    +- (NSString*) description;

    doubleValue

    -- (double) doubleValue
    +- (double) doubleValue;

    fastestEncoding

    -- (NSStringEncoding) fastestEncoding
    +- (NSStringEncoding) fastestEncoding;

    fileSystemRepresentation

    -- (const char*) fileSystemRepresentation
    +- (const char*) fileSystemRepresentation;

    floatValue

    -- (float) floatValue
    +- (float) floatValue;

    getCharacters:

    -- (void) getCharacters: (unichar*)buffer
    +- (void) getCharacters: (unichar*)buffer;

    getCharacters:

    -- (void) getCharacters: (unichar*)buffer
    +- (void) getCharacters: (unichar*)buffer;

    getCString:

    -- (void) getCString: (char*)buffer
    +- (void) getCString: (char*)buffer;

    getCString:maxLength:

    -- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength
    +- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength;

    getCString:maxLength:range:remainingRange:

    -- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength range: (NSRange)aRange remainingRange: (NSRange*)leftoverRange
    +- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength range: (NSRange)aRange remainingRange: (NSRange*)leftoverRange;

    getFileSystemRepresentation:maxLength:

    -- (BOOL) getFileSystemRepresentation: (char*)buffer maxLength: (unsigned int)maxLength
    +- (BOOL) getFileSystemRepresentation: (char*)buffer maxLength: (unsigned int)maxLength;

    getLineStart:end:contentsEnd:

    -+ (void) getLineStart: (unsigned int*)startIndex end: (unsigned int*)lineEndIndex contentsEnd: (unsigned int*)contentsEndIndex
    ++ (void) getLineStart: (unsigned int*)startIndex end: (unsigned int*)lineEndIndex contentsEnd: (unsigned int*)contentsEndIndex;

    hash

    -- (unsigned int) hash
    +- (unsigned int) hash;

    hasPrefix:

    -- (BOOL) hasPrefix: (NSString*)aString
    +- (BOOL) hasPrefix: (NSString*)aString;

    hasSuffix:

    -- (BOOL) hasSuffix: (NSString*)aString
    +- (BOOL) hasSuffix: (NSString*)aString;

    init

    -- (id) init
    +- (id) init;

    initWithCharacters:

    -- (id) initWithCharacters: (const unichar*)characters
    +- (id) initWithCharacters: (const unichar*)characters;

    initWithCharactersNoCopy:length:freeWhenDone:

    -- (id) initWithCharactersNoCopy: (unichar*)characters length: (unsigned int)length freeWhenDone: (BOOL)flag
    +- (id) initWithCharactersNoCopy: (unichar*)characters length: (unsigned int)length freeWhenDone: (BOOL)flag;

    initWithContentsOfFile:

    -- (id) initWithContentsOfFile: (NSString*)path
    +- (id) initWithContentsOfFile: (NSString*)path;

    initWithCString:

    -- (id) initWithCString: (const char*)cString
    +- (id) initWithCString: (const char*)cString;

    initWithCString:

    -- (id) initWithCString: (const char*)cString
    +- (id) initWithCString: (const char*)cString;

    initWithCStringNoCopy:length:freeWhenDone:

    -- (id) initWithCStringNoCopy: (char*)cString length: (unsigned int)length freeWhenDone: (BOOL)flag
    +- (id) initWithCStringNoCopy: (char*)cString length: (unsigned int)length freeWhenDone: (BOOL)flag;

    initWithData:encoding:

    -- (id) initWithData: (NSData*)data encoding: (NSStringEncoding)encoding
    +- (id) initWithData: (NSData*)data encoding: (NSStringEncoding)encoding;

    initWithFormat:

    -- (id) initWithFormat: (NSString*)format,
    +- (id) initWithFormat: (NSString*)format,;

    initWithFormat:arguments:

    -- (id) initWithFormat: (NSString*)format arguments: (va_list)argList
    +- (id) initWithFormat: (NSString*)format arguments: (va_list)argList;

    initWithFormat:

    -- (id) initWithFormat: (NSString*)format
    +- (id) initWithFormat: (NSString*)format;

    initWithFormat:locale:arguments:

    -- (id) initWithFormat: (NSString*)format locale: (NSDictionary*)dictionary arguments: (va_list)argList
    +- (id) initWithFormat: (NSString*)format locale: (NSDictionary*)dictionary arguments: (va_list)argList;

    initWithString:

    -- (id) initWithString: (NSString*)aString
    +- (id) initWithString: (NSString*)aString;

    intValue

    -- (int) intValue
    +- (int) intValue;

    isAbsolutePath

    -- (BOOL) isAbsolutePath
    +- (BOOL) isAbsolutePath;

    isEqualToString:

    -- (BOOL) isEqualToString: (NSString*)aString
    +- (BOOL) isEqualToString: (NSString*)aString;

    lastPathComponent

    -- (NSString*) lastPathComponent
    +- (NSString*) lastPathComponent;

    length

    -- (unsigned int) length
    +- (unsigned int) length;

    lineRangeForRange:

    -+ (NSRange) lineRangeForRange: (NSRange)aRange
    ++ (NSRange) lineRangeForRange: (NSRange)aRange;

    lossyCString

    -- (const char*) lossyCString
    +- (const char*) lossyCString;

    lowercaseString

    -- (NSString*) lowercaseString
    +- (NSString*) lowercaseString;

    pathComponents

    -- (NSArray*) pathComponents
    +- (NSArray*) pathComponents;

    pathExtension

    -- (NSString*) pathExtension
    +- (NSString*) pathExtension;

    propertyList

    -- (id) propertyList
    +- (id) propertyList;

    propertyListFromStringsFileFormat

    -- (NSDictionary*) propertyListFromStringsFileFormat
    +- (NSDictionary*) propertyListFromStringsFileFormat;

    rangeOfCharacterFromSet:

    -- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet
    +- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet;

    rangeOfCharacterFromSet:options:

    -- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask
    +- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask;

    rangeOfCharacterFromSet:options:range:

    -- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask range: (NSRange)aRange
    +- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask range: (NSRange)aRange;

    rangeOfComposedCharacterSequenceAtIndex:

    -- (NSRange) rangeOfComposedCharacterSequenceAtIndex: (unsigned int)anIndex
    +- (NSRange) rangeOfComposedCharacterSequenceAtIndex: (unsigned int)anIndex;

    rangeOfString:

    -- (NSRange) rangeOfString: (NSString*)aString
    +- (NSRange) rangeOfString: (NSString*)aString;

    rangeOfString:

    -- (NSRange) rangeOfString: (NSString*)aString
    +- (NSRange) rangeOfString: (NSString*)aString;

    rangeOfString:options:range:

    -- (NSRange) rangeOfString: (NSString*)subString options: (unsigned int)mask range: (NSRange)aRange
    +- (NSRange) rangeOfString: (NSString*)subString options: (unsigned int)mask range: (NSRange)aRange;

    smallestEncoding

    -- (NSStringEncoding) smallestEncoding
    +- (NSStringEncoding) smallestEncoding;

    stringByAbbreviatingWithTildeInPath

    -- (NSString*) stringByAbbreviatingWithTildeInPath
    +- (NSString*) stringByAbbreviatingWithTildeInPath;

    stringByAppendingFormat:

    -- (NSString*) stringByAppendingFormat: (NSString*)format,
    +- (NSString*) stringByAppendingFormat: (NSString*)format,;

    stringByAppendingPathComponent:

    -- (NSString*) stringByAppendingPathComponent: (NSString*)aString
    +- (NSString*) stringByAppendingPathComponent: (NSString*)aString;

    stringByAppendingPathExtension:

    -- (NSString*) stringByAppendingPathExtension: (NSString*)string
    +- (NSString*) stringByAppendingPathExtension: (NSString*)string;

    stringByAppendingString:

    -- (NSString*) stringByAppendingString: (NSString*)aString
    +- (NSString*) stringByAppendingString: (NSString*)aString;

    stringByDeletingLastPathComponent

    -- (NSString*) stringByDeletingLastPathComponent
    +- (NSString*) stringByDeletingLastPathComponent;

    stringByDeletingPathExtension

    -- (NSString*) stringByDeletingPathExtension
    +- (NSString*) stringByDeletingPathExtension;

    stringByExpandingTildeInPath

    -- (NSString*) stringByExpandingTildeInPath
    +- (NSString*) stringByExpandingTildeInPath;

    stringsByAppendingPaths:

    -- (NSArray*) stringsByAppendingPaths: (NSArray*)paths
    +- (NSArray*) stringsByAppendingPaths: (NSArray*)paths;

    substringFromIndex:

    -- (NSString*) substringFromIndex: (unsigned int)anIndex
    +- (NSString*) substringFromIndex: (unsigned int)anIndex;

    substringToIndex:

    -- (NSString*) substringToIndex: (unsigned int)anIndex
    +- (NSString*) substringToIndex: (unsigned int)anIndex;

    substringWithRange:

    -- (NSString*) substringWithRange: (NSRange)aRange
    +- (NSString*) substringWithRange: (NSRange)aRange;

    uppercaseString

    -- (NSString*) uppercaseString
    +- (NSString*) uppercaseString;

    writeToFile:atomically:

    -- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag
    +- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag;

    diff --git a/Documentation/gsdoc/NSTask.gsdoc b/Documentation/gsdoc/NSTask.gsdoc index 56a551966..bc9058ca2 100644 --- a/Documentation/gsdoc/NSTask.gsdoc +++ b/Documentation/gsdoc/NSTask.gsdoc @@ -1,6 +1,6 @@ - - + + NSTask diff --git a/Documentation/gsdoc/NSTask.html b/Documentation/gsdoc/NSTask.html index e885a551f..43ee50631 100644 --- a/Documentation/gsdoc/NSTask.html +++ b/Documentation/gsdoc/NSTask.html @@ -48,112 +48,112 @@

    launchedTaskWithLaunchPath:arguments:

    -+ (NSTask*) launchedTaskWithLaunchPath: (NSString*)path arguments: (NSArray*)arguments
    ++ (NSTask*) launchedTaskWithLaunchPath: (NSString*)path arguments: (NSArray*)arguments;

    arguments

    -- (NSArray*) arguments
    +- (NSArray*) arguments;

    currentDirectoryPath

    -- (NSString*) currentDirectoryPath
    +- (NSString*) currentDirectoryPath;

    environment

    -- (NSDictionary*) environment
    +- (NSDictionary*) environment;

    init

    -- (id) init
    +- (id) init;

    interrupt

    -- (void) interrupt
    +- (void) interrupt;

    isRunning

    -- (BOOL) isRunning
    +- (BOOL) isRunning;

    launch

    -- (void) launch
    +- (void) launch;

    launchPath

    -- (NSString*) launchPath
    +- (NSString*) launchPath;

    setArguments:

    -- (void) setArguments: (NSArray*)arguments
    +- (void) setArguments: (NSArray*)arguments;

    setCurrentDirectoryPath:

    -- (void) setCurrentDirectoryPath: (NSString*)path
    +- (void) setCurrentDirectoryPath: (NSString*)path;

    setEnvironment:

    -- (void) setEnvironment: (NSDictionary*)environmentDictionary
    +- (void) setEnvironment: (NSDictionary*)environmentDictionary;

    setLaunchPath:

    -- (void) setLaunchPath: (NSString*)path
    +- (void) setLaunchPath: (NSString*)path;

    setStandardError:

    -- (void) setStandardError: (id)file
    +- (void) setStandardError: (id)file;

    setStandardInput:

    -- (void) setStandardInput: (id)file
    +- (void) setStandardInput: (id)file;

    setStandardOutput:

    -- (void) setStandardOutput: (id)file
    +- (void) setStandardOutput: (id)file;

    standardError

    -- (id) standardError
    +- (id) standardError;

    standardInput

    -- (id) standardInput
    +- (id) standardInput;

    standardOutput

    -- (id) standardOutput
    +- (id) standardOutput;

    terminate

    -- (void) terminate
    +- (void) terminate;

    terminationStatus

    -- (int) terminationStatus
    +- (int) terminationStatus;

    waitUntilExit

    -- (void) waitUntilExit
    +- (void) waitUntilExit;

    diff --git a/Documentation/gsdoc/NSThread.gsdoc b/Documentation/gsdoc/NSThread.gsdoc index fd932603b..69b2ccff6 100644 --- a/Documentation/gsdoc/NSThread.gsdoc +++ b/Documentation/gsdoc/NSThread.gsdoc @@ -1,6 +1,6 @@ - - + + NSThread diff --git a/Documentation/gsdoc/NSThread.html b/Documentation/gsdoc/NSThread.html index bf87a11f1..1ee165e04 100644 --- a/Documentation/gsdoc/NSThread.html +++ b/Documentation/gsdoc/NSThread.html @@ -32,32 +32,32 @@

    currentThread

    -+ (NSThread*) currentThread
    ++ (NSThread*) currentThread;

    detachNewThreadSelector:toTarget:(id)aTarget withObject:

    -+ (void) detachNewThreadSelector: (SEL)aSelector toTarget:(id)aTarget withObject: (id)anArgument
    ++ (void) detachNewThreadSelector: (SEL)aSelector toTarget:(id)aTarget withObject: (id)anArgument;

    exit

    -+ (void) exit
    ++ (void) exit;

    isMultiThreaded

    -+ (BOOL) isMultiThreaded
    ++ (BOOL) isMultiThreaded;

    sleepUntilDate:

    -+ (void) sleepUntilDate: (NSDate*)aDate
    ++ (void) sleepUntilDate: (NSDate*)aDate;

    threadDictionary

    -- (NSMutableDictionary*) threadDictionary
    +- (NSMutableDictionary*) threadDictionary;

    diff --git a/Documentation/gsdoc/NSTimeZone.gsdoc b/Documentation/gsdoc/NSTimeZone.gsdoc index 8350b2fe0..f457c93f3 100644 --- a/Documentation/gsdoc/NSTimeZone.gsdoc +++ b/Documentation/gsdoc/NSTimeZone.gsdoc @@ -1,6 +1,6 @@ - - + + NSTimeZone diff --git a/Documentation/gsdoc/NSTimeZone.html b/Documentation/gsdoc/NSTimeZone.html index 2995cb34f..93dc75526 100644 --- a/Documentation/gsdoc/NSTimeZone.html +++ b/Documentation/gsdoc/NSTimeZone.html @@ -49,117 +49,117 @@

    abbreviationDictionary

    -+ (NSDictionary*) abbreviationDictionary
    ++ (NSDictionary*) abbreviationDictionary;

    defaultTimeZone

    -+ (NSTimeZone*) defaultTimeZone
    ++ (NSTimeZone*) defaultTimeZone;

    localTimeZone

    -+ (NSTimeZone*) localTimeZone
    ++ (NSTimeZone*) localTimeZone;

    knownTimeZoneNames

    -+ (NSArray*) knownTimeZoneNames
    ++ (NSArray*) knownTimeZoneNames;

    resetSystemTimeZone

    -+ (void) resetSystemTimeZone
    ++ (void) resetSystemTimeZone;

    setDefaultTimeZone:

    -+ (void) setDefaultTimeZone: (NSTimeZone*)aTimeZone
    ++ (void) setDefaultTimeZone: (NSTimeZone*)aTimeZone;

    systemTimeZone

    -+ (NSTimeZone*) systemTimeZone
    ++ (NSTimeZone*) systemTimeZone;

    timeZoneForSecondsFromGMT:

    -+ (NSTimeZone*) timeZoneForSecondsFromGMT: (int)seconds
    ++ (NSTimeZone*) timeZoneForSecondsFromGMT: (int)seconds;

    timeZoneWithAbbreviation:

    -+ (NSTimeZone*) timeZoneWithAbbreviation: (NSString*)abbreviation
    ++ (NSTimeZone*) timeZoneWithAbbreviation: (NSString*)abbreviation;

    timeZoneWithName:

    -+ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName
    ++ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName;

    timeZoneWithName:

    -+ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName
    ++ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName;

    abbreviation

    -- (NSString*) abbreviation
    +- (NSString*) abbreviation;

    abbreviationForDate:

    -- (NSString*) abbreviationForDate: (NSDate*)aDate
    +- (NSString*) abbreviationForDate: (NSDate*)aDate;

    data

    -- (NSData*) data
    +- (NSData*) data;

    description

    -- (NSString*) description
    +- (NSString*) description;

    initWithName:

    -- (id) initWithName: (NSString*)aName
    +- (id) initWithName: (NSString*)aName;

    initWithName:

    -- (id) initWithName: (NSString*)aName
    +- (id) initWithName: (NSString*)aName;

    isDaylightSavingTime

    -- (BOOL) isDaylightSavingTime
    +- (BOOL) isDaylightSavingTime;

    isDaylightSavingTimeForDate:

    -- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate
    +- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate;

    isEqualToTimeZone:

    -- (BOOL) isEqualToTimeZone: (NSTimeZone*)aTimeZone
    +- (BOOL) isEqualToTimeZone: (NSTimeZone*)aTimeZone;

    name

    -- (NSString*) name
    +- (NSString*) name;

    secondsFromGMT

    -- (int) secondsFromGMT
    +- (int) secondsFromGMT;

    secondsFromGMTForDate:

    -- (int) secondsFromGMTForDate: (NSDate*)aDate
    +- (int) secondsFromGMTForDate: (NSDate*)aDate;

    diff --git a/Documentation/gsdoc/NSTimer.gsdoc b/Documentation/gsdoc/NSTimer.gsdoc index 085167465..b5e19b4b8 100644 --- a/Documentation/gsdoc/NSTimer.gsdoc +++ b/Documentation/gsdoc/NSTimer.gsdoc @@ -1,6 +1,6 @@ - - + + NSTimer diff --git a/Documentation/gsdoc/NSTimer.html b/Documentation/gsdoc/NSTimer.html index 502422937..a9d1b32e5 100644 --- a/Documentation/gsdoc/NSTimer.html +++ b/Documentation/gsdoc/NSTimer.html @@ -36,52 +36,52 @@

    scheduledTimerWithTimeInterval:invocation:

    -+ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation
    ++ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation;

    scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:

    -+ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats
    ++ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats;

    timerWithTimeInterval:invocation:

    -+ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation
    ++ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation;

    timerWithTimeInterval:target:selector:userInfo:repeats:

    -+ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats
    ++ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats;

    fire

    -- (void) fire
    +- (void) fire;

    fireDate

    -- (NSDate*) fireDate
    +- (NSDate*) fireDate;

    invalidate

    -- (void) invalidate
    +- (void) invalidate;

    isValid

    -- (BOOL) isValid
    +- (BOOL) isValid;

    timeInterval

    -- (NSTimeInterval) timeInterval
    +- (NSTimeInterval) timeInterval;

    userInfo

    -- (id) userInfo
    +- (id) userInfo;

    diff --git a/Documentation/gsdoc/NSURL.gsdoc b/Documentation/gsdoc/NSURL.gsdoc index 273a96816..5d2940ada 100644 --- a/Documentation/gsdoc/NSURL.gsdoc +++ b/Documentation/gsdoc/NSURL.gsdoc @@ -1,6 +1,6 @@ - - + + NSURL diff --git a/Documentation/gsdoc/NSURL.html b/Documentation/gsdoc/NSURL.html index 70604bec3..c3f0448f8 100644 --- a/Documentation/gsdoc/NSURL.html +++ b/Documentation/gsdoc/NSURL.html @@ -45,97 +45,97 @@

    URLWithString:

    -+ (id) URLWithString: (NSString*)URLString
    ++ (id) URLWithString: (NSString*)URLString;

    URLWithString:relativeToURL:

    -+ (id) URLWithString: (NSString*)URLString relativeToURL: (NSURL*)baseURL
    ++ (id) URLWithString: (NSString*)URLString relativeToURL: (NSURL*)baseURL;

    fileURLWithPath:

    -+ (id) fileURLWithPath: (NSString*)path
    ++ (id) fileURLWithPath: (NSString*)path;

    loadResourceDataNotifyingClient:usingCache:

    -- (void) loadResourceDataNotifyingClient: (id)client usingCache: (BOOL)shouldUseCache
    +- (void) loadResourceDataNotifyingClient: (id)client usingCache: (BOOL)shouldUseCache;

    parameterString

    -- (NSString*) parameterString
    +- (NSString*) parameterString;

    password

    -- (NSString*) password
    +- (NSString*) password;

    path

    -- (NSString*) path
    +- (NSString*) path;

    port

    -- (NSNumber*) port
    +- (NSNumber*) port;

    propertyForKey:

    -- (id) propertyForKey: (NSString*)propertyKey
    +- (id) propertyForKey: (NSString*)propertyKey;

    query

    -- (NSString*) query
    +- (NSString*) query;

    relativePath

    -- (NSString*) relativePath
    +- (NSString*) relativePath;

    relativeString

    -- (NSString*) relativeString
    +- (NSString*) relativeString;

    resourceDataUsingCache:

    -- (NSData*) resourceDataUsingCache: (BOOL)shouldUseCache
    +- (NSData*) resourceDataUsingCache: (BOOL)shouldUseCache;

    resourceSpecifier

    -- (NSString*) resourceSpecifier
    +- (NSString*) resourceSpecifier;

    scheme

    -- (NSString*) scheme
    +- (NSString*) scheme;

    setProperty:

    -- (BOOL) setProperty: (id)property
    +- (BOOL) setProperty: (id)property;

    setResourceData:

    -- (BOOL) setResourceData: (NSData*)data
    +- (BOOL) setResourceData: (NSData*)data;

    standardizedURL

    -- (NSURL*) standardizedURL
    +- (NSURL*) standardizedURL;

    user

    -- (NSString*) user
    +- (NSString*) user;

    diff --git a/Documentation/gsdoc/NSURLHandle.gsdoc b/Documentation/gsdoc/NSURLHandle.gsdoc index 1e9ffc2ed..eb66bc16e 100644 --- a/Documentation/gsdoc/NSURLHandle.gsdoc +++ b/Documentation/gsdoc/NSURLHandle.gsdoc @@ -1,6 +1,6 @@ - - + + NSURLHandle diff --git a/Documentation/gsdoc/NSURLHandle.html b/Documentation/gsdoc/NSURLHandle.html index aae55858b..0a5e71203 100644 --- a/Documentation/gsdoc/NSURLHandle.html +++ b/Documentation/gsdoc/NSURLHandle.html @@ -46,112 +46,112 @@

    URLHandleClassForURL:

    -+ (Class) URLHandleClassForURL: (NSURL*)anURL
    ++ (Class) URLHandleClassForURL: (NSURL*)anURL;

    cachedHandleForURL:

    -+ (NSURLHandle*) cachedHandleForURL: (NSURL*)anURL
    ++ (NSURLHandle*) cachedHandleForURL: (NSURL*)anURL;

    canInitWithURL:

    -+ (BOOL) canInitWithURL: (NSURL*)anURL
    ++ (BOOL) canInitWithURL: (NSURL*)anURL;

    registerURLHandleClass:

    -+ (void) registerURLHandleClass: (Class)anURLHandleSubclass
    ++ (void) registerURLHandleClass: (Class)anURLHandleSubclass;

    addClient:

    -- (void) addClient: (id<NSURLHandleClient>)client
    +- (void) addClient: (id<NSURLHandleClient>)client;

    availableResourceData

    -- (NSData*) availableResourceData
    +- (NSData*) availableResourceData;

    backgroundLoadDidFailWithReason:

    -- (void) backgroundLoadDidFailWithReason: (NSString*)reason
    +- (void) backgroundLoadDidFailWithReason: (NSString*)reason;

    beginLoadInBackground

    -- (void) beginLoadInBackground
    +- (void) beginLoadInBackground;

    cancelLoadInBackground

    -- (void) cancelLoadInBackground
    +- (void) cancelLoadInBackground;

    didLoadBytes:loadComplete:

    -- (void) didLoadBytes: (NSData*)newBytes loadComplete: (BOOL)yorn
    +- (void) didLoadBytes: (NSData*)newBytes loadComplete: (BOOL)yorn;

    endLoadInBackground

    -- (void) endLoadInBackground
    +- (void) endLoadInBackground;

    failureReason

    -- (NSString*) failureReason
    +- (NSString*) failureReason;

    flushCachedData

    -- (void) flushCachedData
    +- (void) flushCachedData;

    loadInBackground

    -- (void) loadInBackground
    +- (void) loadInBackground;

    loadInForeground

    -- (NSData*) loadInForeground
    +- (NSData*) loadInForeground;

    propertyForKey:

    -- (id) propertyForKey: (NSString*)propertyKey
    +- (id) propertyForKey: (NSString*)propertyKey;

    propertyForKeyIfAvailable:

    -- (id) propertyForKeyIfAvailable: (NSString*)propertyKey
    +- (id) propertyForKeyIfAvailable: (NSString*)propertyKey;

    removeClient:

    -- (void) removeClient: (id<NSURLHandleClient>)client
    +- (void) removeClient: (id<NSURLHandleClient>)client;

    resourceData

    -- (NSData*) resourceData
    +- (NSData*) resourceData;

    status

    -- (NSURLHandleStatus) status
    +- (NSURLHandleStatus) status;

    writeData:

    -- (BOOL) writeData: (NSData*)data
    +- (BOOL) writeData: (NSData*)data;

    writeProperty:

    -- (BOOL) writeProperty: (id)propertyValue
    +- (BOOL) writeProperty: (id)propertyValue;

    diff --git a/Documentation/gsdoc/NSUnarchiver.gsdoc b/Documentation/gsdoc/NSUnarchiver.gsdoc index b15354b55..cedbd6fb3 100644 --- a/Documentation/gsdoc/NSUnarchiver.gsdoc +++ b/Documentation/gsdoc/NSUnarchiver.gsdoc @@ -1,6 +1,6 @@ - - + + NSUnarchiver diff --git a/Documentation/gsdoc/NSUnarchiver.html b/Documentation/gsdoc/NSUnarchiver.html index 402a9657f..338b0069a 100644 --- a/Documentation/gsdoc/NSUnarchiver.html +++ b/Documentation/gsdoc/NSUnarchiver.html @@ -38,62 +38,62 @@

    classNameDecodedForArchiveClassName:

    -+ (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive
    ++ (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive;

    decodeClassName:

    -+ (void) decodeClassName: (NSString*)nameInArchive
    ++ (void) decodeClassName: (NSString*)nameInArchive;

    unarchiveObjectWithData:

    -+ (id) unarchiveObjectWithData: (NSData*)data
    ++ (id) unarchiveObjectWithData: (NSData*)data;

    unarchiveObjectWithFile:

    -+ (id) unarchiveObjectWithFile: (NSString*)path
    ++ (id) unarchiveObjectWithFile: (NSString*)path;

    classNameDecodedForArchiveClassName:

    -- (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive
    +- (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive;

    decodeClassName:

    -- (void) decodeClassName: (NSString*)nameInArchive
    +- (void) decodeClassName: (NSString*)nameInArchive;

    initForReadingWithData:

    -- (id) initForReadingWithData: (NSData*)data
    +- (id) initForReadingWithData: (NSData*)data;

    isAtEnd

    -- (BOOL) isAtEnd
    +- (BOOL) isAtEnd;

    objectZone

    -- (NSZone*) objectZone
    +- (NSZone*) objectZone;

    replaceObject:withObject:

    -- (void) replaceObject: (id)object withObject: (id)newObject
    +- (void) replaceObject: (id)object withObject: (id)newObject;

    setObjectZone:

    -- (void) setObjectZone: (NSZone*)zone
    +- (void) setObjectZone: (NSZone*)zone;

    systemVersion

    -- (unsigned int) systemVersion
    +- (unsigned int) systemVersion;

    diff --git a/Documentation/gsdoc/NSUndoManager.gsdoc b/Documentation/gsdoc/NSUndoManager.gsdoc index 25ffc45f5..6e0d45407 100644 --- a/Documentation/gsdoc/NSUndoManager.gsdoc +++ b/Documentation/gsdoc/NSUndoManager.gsdoc @@ -1,6 +1,6 @@ - - + + NSUndoManager diff --git a/Documentation/gsdoc/NSUndoManager.html b/Documentation/gsdoc/NSUndoManager.html index da0b01021..0f35a6eb9 100644 --- a/Documentation/gsdoc/NSUndoManager.html +++ b/Documentation/gsdoc/NSUndoManager.html @@ -57,157 +57,157 @@

    beginUndoGrouping

    -- (void) beginUndoGrouping
    +- (void) beginUndoGrouping;

    canRedo

    -- (BOOL) canRedo
    +- (BOOL) canRedo;

    canUndo

    -- (BOOL) canUndo
    +- (BOOL) canUndo;

    disableUndoRegistration

    -- (void) disableUndoRegistration
    +- (void) disableUndoRegistration;

    enableUndoRegistration

    -- (void) enableUndoRegistration
    +- (void) enableUndoRegistration;

    endUndoGrouping

    -- (void) endUndoGrouping
    +- (void) endUndoGrouping;

    forwardInvocation:

    -- (void) forwardInvocation: (NSInvocation*)anInvocation
    +- (void) forwardInvocation: (NSInvocation*)anInvocation;

    groupingLevel

    -- (int) groupingLevel
    +- (int) groupingLevel;

    groupsByEvent

    -- (BOOL) groupsByEvent
    +- (BOOL) groupsByEvent;

    isRedoing

    -- (BOOL) isRedoing
    +- (BOOL) isRedoing;

    isUndoing

    -- (BOOL) isUndoing
    +- (BOOL) isUndoing;

    isUndoRegisgrationEnabled

    -- (BOOL) isUndoRegisgrationEnabled
    +- (BOOL) isUndoRegisgrationEnabled;

    levelsOfUndo

    -- (unsigned int) levelsOfUndo
    +- (unsigned int) levelsOfUndo;

    prepareWithInvocationTarget:

    -- (id) prepareWithInvocationTarget: (id)target
    +- (id) prepareWithInvocationTarget: (id)target;

    redo

    -- (void) redo
    +- (void) redo;

    redoActionName

    -- (NSString*) redoActionName
    +- (NSString*) redoActionName;

    redoMenuItemTitle

    -- (NSString*) redoMenuItemTitle
    +- (NSString*) redoMenuItemTitle;

    redoMenuTitleForUndoActionName:

    -- (NSString*) redoMenuTitleForUndoActionName: (NSString*)actionName
    +- (NSString*) redoMenuTitleForUndoActionName: (NSString*)actionName;

    registerUndoWithTarget:selector:

    -- (void) registerUndoWithTarget: (id)target selector: (SEL)aSelector
    +- (void) registerUndoWithTarget: (id)target selector: (SEL)aSelector;

    removeAllActions

    -- (void) removeAllActions
    +- (void) removeAllActions;

    removeAllActionsWithTarget:

    -- (void) removeAllActionsWithTarget: (id)target
    +- (void) removeAllActionsWithTarget: (id)target;

    runLoopModes

    -- (NSArray*) runLoopModes
    +- (NSArray*) runLoopModes;

    setActionName:

    -- (void) setActionName: (NSString*)actionName
    +- (void) setActionName: (NSString*)actionName;

    setGroupsByEvent:

    -- (void) setGroupsByEvent: (BOOL)flag
    +- (void) setGroupsByEvent: (BOOL)flag;

    setLevelsOfUndo:

    -- (void) setLevelsOfUndo: (unsigned int)anInt
    +- (void) setLevelsOfUndo: (unsigned int)anInt;

    setRunLoopModes:

    -- (void) setRunLoopModes: (NSArray*)modes
    +- (void) setRunLoopModes: (NSArray*)modes;

    undo

    -- (void) undo
    +- (void) undo;

    undoActionName

    -- (NSString*) undoActionName
    +- (NSString*) undoActionName;

    undoMenuItemTitle

    -- (NSString*) undoMenuItemTitle
    +- (NSString*) undoMenuItemTitle;

    undoMenuTitleForUndoActionName:

    -- (NSString*) undoMenuTitleForUndoActionName: (NSString*)actionName
    +- (NSString*) undoMenuTitleForUndoActionName: (NSString*)actionName;

    undoNestedGroup

    -- (void) undoNestedGroup
    +- (void) undoNestedGroup;

    diff --git a/Documentation/gsdoc/NSUserDefaults.gsdoc b/Documentation/gsdoc/NSUserDefaults.gsdoc index 562329ae2..0c94fcc6a 100644 --- a/Documentation/gsdoc/NSUserDefaults.gsdoc +++ b/Documentation/gsdoc/NSUserDefaults.gsdoc @@ -1,6 +1,6 @@ - - + + NSUserDefaults diff --git a/Documentation/gsdoc/NSUserDefaults.html b/Documentation/gsdoc/NSUserDefaults.html index 6a0cff6fc..6a6cfa5e5 100644 --- a/Documentation/gsdoc/NSUserDefaults.html +++ b/Documentation/gsdoc/NSUserDefaults.html @@ -56,152 +56,152 @@

    standardUserDefaults

    -+ (NSUserDefaults*) standardUserDefaults
    ++ (NSUserDefaults*) standardUserDefaults;

    arrayForKey:

    -- (NSArray*) arrayForKey: (NSString*)defaultName
    +- (NSArray*) arrayForKey: (NSString*)defaultName;

    boolForKey:

    -- (BOOL) boolForKey: (NSString*)defaultName
    +- (BOOL) boolForKey: (NSString*)defaultName;

    dataForKey:

    -- (NSData*) dataForKey: (NSString*)defaultName
    +- (NSData*) dataForKey: (NSString*)defaultName;

    dictionaryForKey:

    -- (NSDictionary*) dictionaryForKey: (NSString*)defaultName
    +- (NSDictionary*) dictionaryForKey: (NSString*)defaultName;

    dictionaryRepresentation

    -- (NSDictionary*) dictionaryRepresentation
    +- (NSDictionary*) dictionaryRepresentation;

    floatForKey:

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

    init

    -- (id) init
    +- (id) init;

    initWithUser:

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

    integerForKey:

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

    objectForKey:

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

    persistentDomainForName:

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

    persistentDomainNames

    -- (NSArray*) persistentDomainNames
    +- (NSArray*) persistentDomainNames;

    registerDefaults:

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

    removeObjectForKey:

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

    removePersistentDomainForName:

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

    removeVolatileDomainForName:

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

    searchList

    -- (NSArray*) searchList
    +- (NSArray*) searchList;

    setBool:forKey:

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

    setFloat:forKey:

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

    setInteger:forKey:

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

    setObject:forKey:

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

    setPersistentDomain:forName:

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

    setSearchList:

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

    setVolatileDomain:forName:

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

    stringArrayForKey:

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

    stringForKey:

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

    synchronize

    -- (BOOL) synchronize
    +- (BOOL) synchronize;

    volatileDomainForName:

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

    volatileDomainNames

    -- (NSArray*) volatileDomainNames
    +- (NSArray*) volatileDomainNames;

    diff --git a/Documentation/gsdoc/NSValue.gsdoc b/Documentation/gsdoc/NSValue.gsdoc index 9328f6c62..f9ba9666d 100644 --- a/Documentation/gsdoc/NSValue.gsdoc +++ b/Documentation/gsdoc/NSValue.gsdoc @@ -1,6 +1,6 @@ - - + + NSValue diff --git a/Documentation/gsdoc/NSValue.html b/Documentation/gsdoc/NSValue.html index 689caf987..815fbdf51 100644 --- a/Documentation/gsdoc/NSValue.html +++ b/Documentation/gsdoc/NSValue.html @@ -41,82 +41,82 @@

    value:withObjCType:

    -+ (NSValue*) value: (const void*)value withObjCType: (const char*)type
    ++ (NSValue*) value: (const void*)value withObjCType: (const char*)type;

    valueWithBytes:objCType:

    -+ (NSValue*) valueWithBytes: (const void*)value objCType: (const char*)type
    ++ (NSValue*) valueWithBytes: (const void*)value objCType: (const char*)type;

    valueWithNonretainedObject:

    -+ (NSValue*) valueWithNonretainedObject: (id)anObject
    ++ (NSValue*) valueWithNonretainedObject: (id)anObject;

    valueWithPoint:

    -+ (NSValue*) valueWithPoint: (NSPoint)aPoint
    ++ (NSValue*) valueWithPoint: (NSPoint)aPoint;

    valueWithPointer:

    -+ (NSValue*) valueWithPointer: (const void*)aPointer
    ++ (NSValue*) valueWithPointer: (const void*)aPointer;

    valueWithRect:

    -+ (NSValue*) valueWithRect: (NSRect)rect
    ++ (NSValue*) valueWithRect: (NSRect)rect;

    valueWithSize:

    -+ (NSValue*) valueWithSize: (NSSize)size
    ++ (NSValue*) valueWithSize: (NSSize)size;

    getValue:

    -- (void) getValue: (void*)buffer
    +- (void) getValue: (void*)buffer;

    initWithBytes:objCType:

    -- (id) initWithBytes: (const void*)value objCType: (const char*)type
    +- (id) initWithBytes: (const void*)value objCType: (const char*)type;

    -- (id)
    +- (id) ;

    nonretainedObjectValue

    -- (id) nonretainedObjectValue
    +- (id) nonretainedObjectValue;

    objCType

    -- (const char*) objCType
    +- (const char*) objCType;

    pointValue

    -- (NSPoint) pointValue
    +- (NSPoint) pointValue;

    pointerValue

    -- (void*) pointerValue
    +- (void*) pointerValue;

    rectValue

    -- (NSRect) rectValue
    +- (NSRect) rectValue;

    sizeValue

    -- (NSSize) sizeValue
    +- (NSSize) sizeValue;

    diff --git a/Headers/gnustep/base/NSConnection.h b/Headers/gnustep/base/NSConnection.h index f7656a251..984a33e86 100644 --- a/Headers/gnustep/base/NSConnection.h +++ b/Headers/gnustep/base/NSConnection.h @@ -86,6 +86,8 @@ GS_EXPORT NSString *NSConnectionProxyCount; /* Objects received */ NSRecursiveLock *_refGate; NSMutableArray *_cachedDecoders; NSMutableArray *_cachedEncoders; + NSString *_registeredName; + NSPortNameServer *_nameServer; } + (NSArray*) allConnections; diff --git a/Source/Makefile.preamble b/Source/Makefile.preamble index 1ed3d51f0..61ea3a988 100644 --- a/Source/Makefile.preamble +++ b/Source/Makefile.preamble @@ -39,7 +39,7 @@ # # Additional flags to pass to the preprocessor -ADDITIONAL_CPPFLAGS = $(DEFS) -Wall -DGS_NEW_DO=0 +ADDITIONAL_CPPFLAGS = $(DEFS) -Wall -DGS_NEW_DO=1 # Additional flags to pass to the Objective-C compiler ADDITIONAL_OBJCFLAGS = diff --git a/Source/NSConnection.m b/Source/NSConnection.m index b61a11403..2a46d701b 100644 --- a/Source/NSConnection.m +++ b/Source/NSConnection.m @@ -316,7 +316,12 @@ static NSLock *global_proxies_gate; + (NSArray*) allConnections { - return NSAllHashTableObjects(connection_table); + NSArray *a; + + M_LOCK(connection_table_gate); + a = NSAllHashTableObjects(connection_table); + M_UNLOCK(connection_table_gate); + return a; } + (NSConnection*) connectionWithReceivePort: (NSPort*)r @@ -356,12 +361,12 @@ static NSLock *global_proxies_gate; if (sendPort != nil) { - con = existingConnection(nil, sendPort); + NSPort *recvPort; + + recvPort = [[self defaultConnection] receivePort]; + con = existingConnection(recvPort, sendPort); if (con == nil) { - NSPort *recvPort; - - recvPort = [[self defaultConnection] receivePort]; con = [self connectionWithReceivePort: recvPort sendPort: sendPort]; } @@ -697,35 +702,51 @@ static NSLock *global_proxies_gate; NSCreateMapTable(NSIntMapKeyCallBacks, NSNonOwnedPointerMapValueCallBacks, 0); - /* - * Some attributes are inherited from the parent if possible. - */ - if (parent != nil) - { - _independentQueueing = parent->_independentQueueing; - _replyTimeout = parent->_replyTimeout; - _requestTimeout = parent->_requestTimeout; - } - else - { - _independentQueueing = NO; - _replyTimeout = CONNECTION_DEFAULT_TIMEOUT; - _requestTimeout = CONNECTION_DEFAULT_TIMEOUT; - } - _requestDepth = 0; _delegate = nil; _refGate = [NSRecursiveLock new]; /* - * Set up request modes array and make sure the receiving port is - * added to the run loop to get data. + * Some attributes are inherited from the parent if possible. */ - loop = [runLoopClass currentRunLoop]; - _runLoops = [[NSMutableArray alloc] initWithObjects: &loop count: 1]; - _requestModes = [[NSMutableArray alloc] initWithCapacity: 2]; - [self addRequestMode: NSDefaultRunLoopMode]; - [self addRequestMode: NSConnectionReplyMode]; + if (parent != nil) + { + unsigned count; + + _multipleThreads = parent->_multipleThreads; + _independentQueueing = parent->_independentQueueing; + _replyTimeout = parent->_replyTimeout; + _requestTimeout = parent->_requestTimeout; + _runLoops = [parent->_runLoops mutableCopy]; + count = [parent->_requestModes count]; + _requestModes = [[NSMutableArray alloc] initWithCapacity: count]; + while (count-- > 0) + { + [self addRequestMode: [parent->_requestModes objectAtIndex: count]]; + } + } + else + { + _multipleThreads = NO; + _independentQueueing = NO; + _replyTimeout = CONNECTION_DEFAULT_TIMEOUT; + _requestTimeout = CONNECTION_DEFAULT_TIMEOUT; + /* + * Set up request modes array and make sure the receiving port + * is added to the run loop to get data. + */ + loop = [runLoopClass currentRunLoop]; + _runLoops = [[NSMutableArray alloc] initWithObjects: &loop count: 1]; + _requestModes = [[NSMutableArray alloc] initWithCapacity: 2]; + [self addRequestMode: NSDefaultRunLoopMode]; + [self addRequestMode: NSConnectionReplyMode]; + + /* + * If we have no parent, we must handle incoming packets on our + * receive port ourself - so we set ourself up as the port delegate. + */ + [_receivePort setDelegate: self]; + } /* Ask the delegate for permission, (OpenStep-style and GNUstep-style). */ @@ -756,15 +777,6 @@ static NSLock *global_proxies_gate; if ([del respondsTo: @selector(connection:didConnect:)]) self = [del connection: parent didConnect: self]; - /* - * If we have no parent, we must handle incoming packets on our - * receive port ourself - so we set ourself up as the port delegate. - */ - if (parent == nil) - { - [_receivePort setDelegate: self]; - } - /* Register ourselves for invalidation notification when the ports become invalid. */ nCenter = [NSNotificationCenter defaultCenter]; @@ -793,23 +805,31 @@ static NSLock *global_proxies_gate; - (void) invalidate { - BOOL wasValid; - M_LOCK(_refGate); - wasValid = _isValid; - _isValid = NO; - M_UNLOCK(_refGate); - - if (wasValid == NO) + if (_isValid == NO) { + M_UNLOCK(_refGate); return; } + M_LOCK(connection_table_gate); + NSHashRemove(connection_table, self); + [timer invalidate]; + timer = nil; + M_UNLOCK(connection_table_gate); + + M_LOCK(_refGate); + /* * Don't need notifications any more - so remove self as observer. */ [[NSNotificationCenter defaultCenter] removeObserver: self]; + /* + * Make sure we are not registered. + */ + [self registerName: nil]; + /* * Withdraw from run loops. */ @@ -844,22 +864,36 @@ static NSLock *global_proxies_gate; * these proxies in case they are keeping us retained when we * might otherwise de deallocated. */ - { - NSArray *targets; - unsigned i; + M_LOCK(_proxiesGate); + if (_remoteProxies != 0) + { + NSFreeMapTable(_remoteProxies); + _remoteProxies = 0; + } + if (_localObjects != 0) + { + NSFreeMapTable(_localObjects); + _localObjects = 0; + } + if (_localTargets != 0) + { + NSArray *targets; + unsigned i; - M_LOCK(_proxiesGate); - targets = NSAllMapTableValues(_localTargets); - IF_NO_GC(RETAIN(targets)); - for (i = 0; i < [targets count]; i++) - { - id t = [[targets objectAtIndex: i] localForProxy]; + targets = NSAllMapTableValues(_localTargets); + IF_NO_GC(RETAIN(targets)); + i = [targets count]; + while (i-- > 0) + { + id t = [[targets objectAtIndex: i] localForProxy]; - [self removeLocalObject: t]; - } - [targets release]; - M_UNLOCK(_proxiesGate); - } + [self removeLocalObject: t]; + } + RELEASE(targets); + NSFreeMapTable(_localTargets); + _localTargets = 0; + } + M_UNLOCK(_proxiesGate); RELEASE(self); } @@ -899,27 +933,20 @@ static NSLock *global_proxies_gate; - (BOOL) registerName: (NSString*)name withNameServer: (NSPortNameServer*)svr { - NSArray *names = [svr namesForPort: _receivePort]; BOOL result = YES; - unsigned c; if (name != nil) { result = [svr registerPort: _receivePort forName: name]; } - if (result == YES && (c = [names count]) > 0) + if (result == YES) { - unsigned i; - - for (i = 0; i < c; i++) + if (_registeredName != nil) { - NSString *tmp = [names objectAtIndex: i]; - - if ([tmp isEqualToString: name] == NO) - { - [svr removePort: _receivePort forName: name]; - } + [_nameServer removePort: _receivePort forName: _registeredName]; } + ASSIGN(_registeredName, name); + ASSIGN(_nameServer, svr); } return result; } @@ -1154,11 +1181,6 @@ static NSLock *global_proxies_gate; NSLog(@"finalising 0x%x", (gsaddr)self); [self invalidate]; - M_LOCK(connection_table_gate); - NSHashRemove(connection_table, self); - [timer invalidate]; - timer = nil; - M_UNLOCK(connection_table_gate); /* Remove rootObject from root_object_map if this is last connection */ if (_receivePort != nil && existingConnection(_receivePort, nil) == nil) @@ -1189,24 +1211,6 @@ static NSLock *global_proxies_gate; DESTROY(_receivePort); DESTROY(_sendPort); - M_LOCK(_proxiesGate); - if (_remoteProxies != 0) - { - NSFreeMapTable(_remoteProxies); - _remoteProxies = 0; - } - if (_localObjects != 0) - { - NSFreeMapTable(_localObjects); - _localObjects = 0; - } - if (_localTargets != 0) - { - NSFreeMapTable(_localTargets); - _localTargets = 0; - } - M_UNLOCK(_proxiesGate); - DESTROY(_requestQueue); if (_replyMap != 0) { @@ -3149,11 +3153,6 @@ static int messages_received_count; NSLog(@"finalising 0x%x\n", (gsaddr)self); [self invalidate]; - [connection_table_gate lock]; - NSHashRemove(connection_table, self); - [timer invalidate]; - timer = nil; - [connection_table_gate unlock]; /* Remove rootObject from root_object_dictionary if this is last connection */