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
+ 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.
+
+ 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
+ If no NSConnection can be found for name and
+ hosthost, the method returns
+ The returned object has the default NSConnection of the
+ current thread as its parent (it has the same receive port
+ as the default 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.
+
+ 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
+ If the method returns
+ In GNUstep the components array is mutable, allowing
+ you to replace the NSData objects with your own version.
+
+ 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
+ In GNUstep the components array is mutable, allowing
+ you to replace the NSData objects with your own version.
+
+ 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.
+
+ 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.
+ Version: 0.1 Date: 28 February, 2000 Version: 0.2 Date: 4 July, 2000 Declared in: Foundation/NSConnection.h
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-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.
+ nil
.
+
+ 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.
+ This is a convenience method for -
+ nil
if it couldn't find
+ a connection or if the root object for the connection has
+ not been set.
+
+ This option is inherited by child connections.
YES
if the NSConnection is configured to
+ handle remote messages atomically, NO
otherwise.
+
+ This option is inherited by child connections.
+ Behavior varies with the port values as follows -
+ nil
nil
.
+ nil
+ NSConnectionDidInitializeNotification is posted once a new
+ connection is initialised.
+
+ Removes the NSConnections ports from any run loops.
+
+ Posts an NSConnectionDidDieNotification.
+
+ Invalidates all remote objects and local proxies.
YES
if the connection is invalid,
+ NO
otherwise.
YES
if the connection permits
+ multiple threads to use it to send requests,
+ NO
otherwise.
+ 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.
+
+ Returns nil
if no root object has been set.
+ The delegate is able to control some of the NSConnection's
+ behavior by implementing methods in an informal protocol.
+ 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.
+ On GNUstep the dictionary contains -
+ YES
if they are valid, NO
+ otherwise.
+ NO
then an
+ NSFailedAuthentication exception will be raised.
+ nil
then an
+ NSGenericException exception will be raised.
+ NSConnection
NSConnection
+ + 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. +
+ + 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). +
+ + NSConnection *conn; + + conn = [[NSConnection alloc] initWithReceivePort: [NSPort port] + sendPort: nil]; + [conn setRootObject: anObject]; + if ([conn registerName: name] == NO) + { + DESTROY(conn); + } + return conn; + +
nil
if it couldn't find
+ a connection or if the root object for the connection has
+ not been set.
+
+YES
if the NSConnection is configured to
+ handle remote messages atomically, NO
otherwise.
+ nil
+nil
.
+
+nil
+
+
+ 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.
+
YES
if the connection is invalid,
+ NO
otherwise.
+
+YES
if the connection permits
+ multiple threads to use it to send requests,
+ NO
otherwise.
+
+YES
on success, NO
on failure.
+ nil
as name to unregister the
+ NSConnection.
+
+nil
if no root object has been set.
+
+NO
... if set to
+ YES
then any messages arriving while one message
+ is being dealt with, will be queued.
+ + + 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. +
+ + 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. +
+ + 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. +
- -
- -
@@ -127,7 +127,7 @@ 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 @@
-
-
@@ -245,7 +245,7 @@ Standards: GNUstep
Returns an array of all available string encodings, terminated by a null value.
Returns the encoding used for any method accepting a C string.
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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;
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
-
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 @@
-
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 @@
-
-
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 @@
-
-
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 @@
-
-@"..."
availableStringEncodings
-+ (const NSStringEncoding*) availableStringEncodings
++ (const NSStringEncoding*) availableStringEncodings;
defaultCStringEncoding
-+ (NSStringEncoding) defaultCStringEncoding
++ (NSStringEncoding) defaultCStringEncoding;
Returns the localized name of the encoding specified by encoding.
@@ -150,427 +150,427 @@ Returns the localized name of the encoding specified by encoding.