mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
New DO documentation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6873 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1ef1ffd62e
commit
4f32447693
141 changed files with 2248 additions and 1500 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
* Makefile.preamble: define GS_NEW_DO to specify whether the
|
* Makefile.preamble: define GS_NEW_DO to specify whether the
|
||||||
new or the old DO code is to be used. Change the define and
|
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 -
|
Advantages of new code -
|
||||||
MacOS-X compatibly
|
MacOS-X compatibly
|
||||||
Should work between different processor architectures and word sizes
|
Should work between different processor architectures and word sizes
|
||||||
|
@ -20,6 +20,10 @@
|
||||||
* Source/GSPortCoder.m: removed - merged into NSPortCoder.m
|
* Source/GSPortCoder.m: removed - merged into NSPortCoder.m
|
||||||
* Source/NSPortNameServer.m: Use GS_NEW_DO define to determine
|
* Source/NSPortNameServer.m: Use GS_NEW_DO define to determine
|
||||||
default port class
|
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 <rfm@gnu.org>
|
2000-07-04 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="Base">
|
<gsdoc base="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>GNUstep Base</title>
|
<title>GNUstep Base</title>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSArchiver" next="NSArray.html" up="Base.html">
|
<gsdoc base="NSArchiver" next="NSArray" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSArchiver</title>
|
<title>NSArchiver</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -34,47 +34,47 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">archiveRootObject:</a></h2>
|
<h2><a name="method-0">archiveRootObject:</a></h2>
|
||||||
+ (BOOL) <b>archiveRootObject:</b> (id)rootObject<br>
|
+ (BOOL) <b>archiveRootObject:</b> (id)rootObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">archivedDataWithRootObject:</a></h2>
|
<h2><a name="method-1">archivedDataWithRootObject:</a></h2>
|
||||||
+ (NSData*) <b>archivedDataWithRootObject:</b> (id)rootObject<br>
|
+ (NSData*) <b>archivedDataWithRootObject:</b> (id)rootObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">archiverData</a></h2>
|
<h2><a name="method-2">archiverData</a></h2>
|
||||||
- (NSMutableData*) <b>archiverData</b><br>
|
- (NSMutableData*) <b>archiverData</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">classNameEncodedForTrueClassName:</a></h2>
|
<h2><a name="method-3">classNameEncodedForTrueClassName:</a></h2>
|
||||||
- (NSString*) <b>classNameEncodedForTrueClassName:</b> (NSString*)trueName<br>
|
- (NSString*) <b>classNameEncodedForTrueClassName:</b> (NSString*)trueName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">encodeClassName:intoClassName:</a></h2>
|
<h2><a name="method-4">encodeClassName:intoClassName:</a></h2>
|
||||||
- (void) <b>encodeClassName:</b> (NSString*)trueName <b>intoClassName:</b> (NSString*)inArchiveName<br>
|
- (void) <b>encodeClassName:</b> (NSString*)trueName <b>intoClassName:</b> (NSString*)inArchiveName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">encodeConditionalObject:</a></h2>
|
<h2><a name="method-5">encodeConditionalObject:</a></h2>
|
||||||
- (void) <b>encodeConditionalObject:</b> (id)object<br>
|
- (void) <b>encodeConditionalObject:</b> (id)object;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">encodeRootObject:</a></h2>
|
<h2><a name="method-6">encodeRootObject:</a></h2>
|
||||||
- (void) <b>encodeRootObject:</b> (id)rootObject<br>
|
- (void) <b>encodeRootObject:</b> (id)rootObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">initForWritingWithMutableData:</a></h2>
|
<h2><a name="method-7">initForWritingWithMutableData:</a></h2>
|
||||||
- (id) <b>initForWritingWithMutableData:</b> (NSMutableData*)data<br>
|
- (id) <b>initForWritingWithMutableData:</b> (NSMutableData*)data;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">replaceObject:withObject:</a></h2>
|
<h2><a name="method-8">replaceObject:withObject:</a></h2>
|
||||||
- (void) <b>replaceObject:</b> (id)object <b>withObject:</b> (id)newObject<br>
|
- (void) <b>replaceObject:</b> (id)object <b>withObject:</b> (id)newObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSArray" prev="NSArchiver.html" next="NSAssertionHandler.html" up="Base.html">
|
<gsdoc base="NSArray" prev="NSArchiver" next="NSAssertionHandler" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSArray</title>
|
<title>NSArray</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -65,197 +65,197 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allocWithZone:</a></h2>
|
<h2><a name="method-0">allocWithZone:</a></h2>
|
||||||
+ (id) <b>allocWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>allocWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">array</a></h2>
|
<h2><a name="method-1">array</a></h2>
|
||||||
+ (id) <b>array</b><br>
|
+ (id) <b>array</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">arrayWithArray:</a></h2>
|
<h2><a name="method-2">arrayWithArray:</a></h2>
|
||||||
+ (id) <b>arrayWithArray:</b> (NSArray*)anArray<br>
|
+ (id) <b>arrayWithArray:</b> (NSArray*)anArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">arrayWithContentsOfFile:</a></h2>
|
<h2><a name="method-3">arrayWithContentsOfFile:</a></h2>
|
||||||
+ (id) <b>arrayWithContentsOfFile:</b> (NSString*)aPath<br>
|
+ (id) <b>arrayWithContentsOfFile:</b> (NSString*)aPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">arrayWithObject:</a></h2>
|
<h2><a name="method-4">arrayWithObject:</a></h2>
|
||||||
+ (id) <b>arrayWithObject:</b> (id)anObject<br>
|
+ (id) <b>arrayWithObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">arrayWithObjects:</a></h2>
|
<h2><a name="method-5">arrayWithObjects:</a></h2>
|
||||||
+ (id) <b>arrayWithObjects:</b> (id)firstObj,<br>
|
+ (id) <b>arrayWithObjects:</b> (id)firstObj,;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">arrayWithObjects:</a></h2>
|
<h2><a name="method-6">arrayWithObjects:</a></h2>
|
||||||
+ (id) <b>arrayWithObjects:</b> (id*)objects<br>
|
+ (id) <b>arrayWithObjects:</b> (id*)objects;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">arrayByAddingObject:</a></h2>
|
<h2><a name="method-7">arrayByAddingObject:</a></h2>
|
||||||
- (NSArray*) <b>arrayByAddingObject:</b> (id)anObject<br>
|
- (NSArray*) <b>arrayByAddingObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">arrayByAddingObjectsFromArray:</a></h2>
|
<h2><a name="method-8">arrayByAddingObjectsFromArray:</a></h2>
|
||||||
- (NSArray*) <b>arrayByAddingObjectsFromArray:</b> (NSArray*)otherArray<br>
|
- (NSArray*) <b>arrayByAddingObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">componentsJoinedByString:</a></h2>
|
<h2><a name="method-9">componentsJoinedByString:</a></h2>
|
||||||
- (NSString*) <b>componentsJoinedByString:</b> (NSString*)separator<br>
|
- (NSString*) <b>componentsJoinedByString:</b> (NSString*)separator;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">containsObject:</a></h2>
|
<h2><a name="method-10">containsObject:</a></h2>
|
||||||
- (BOOL) <b>containsObject:</b> (id)anObject<br>
|
- (BOOL) <b>containsObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">count</a></h2>
|
<h2><a name="method-11">count</a></h2>
|
||||||
- (unsigned int) <b>count</b><br>
|
- (unsigned int) <b>count</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">descriptionWithLocale:</a></h2>
|
<h2><a name="method-12">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">firstObjectCommonWithArray:</a></h2>
|
<h2><a name="method-14">firstObjectCommonWithArray:</a></h2>
|
||||||
- (id) <b>firstObjectCommonWithArray:</b> (NSArray*)otherArray<br>
|
- (id) <b>firstObjectCommonWithArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">getObjects:</a></h2>
|
<h2><a name="method-15">getObjects:</a></h2>
|
||||||
- (void) <b>getObjects:</b> (id*)aBuffer<br>
|
- (void) <b>getObjects:</b> (id*)aBuffer;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">getObjects:</a></h2>
|
<h2><a name="method-16">getObjects:</a></h2>
|
||||||
- (void) <b>getObjects:</b> (id*)aBuffer<br>
|
- (void) <b>getObjects:</b> (id*)aBuffer;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">indexOfObject:</a></h2>
|
<h2><a name="method-17">indexOfObject:</a></h2>
|
||||||
- (unsigned int) <b>indexOfObject:</b> (id)anObject<br>
|
- (unsigned int) <b>indexOfObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">indexOfObject:</a></h2>
|
<h2><a name="method-18">indexOfObject:</a></h2>
|
||||||
- (unsigned int) <b>indexOfObject:</b> (id)anObject<br>
|
- (unsigned int) <b>indexOfObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">indexOfObjectIdenticalTo:</a></h2>
|
<h2><a name="method-19">indexOfObjectIdenticalTo:</a></h2>
|
||||||
- (unsigned int) <b>indexOfObjectIdenticalTo:</b> (id)anObject<br>
|
- (unsigned int) <b>indexOfObjectIdenticalTo:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">indexOfObjectIdenticalTo:</a></h2>
|
<h2><a name="method-20">indexOfObjectIdenticalTo:</a></h2>
|
||||||
- (unsigned int) <b>indexOfObjectIdenticalTo:</b> (id)anObject<br>
|
- (unsigned int) <b>indexOfObjectIdenticalTo:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">initWithArray:</a></h2>
|
<h2><a name="method-21">initWithArray:</a></h2>
|
||||||
- (id) <b>initWithArray:</b> (NSArray*)anArray<br>
|
- (id) <b>initWithArray:</b> (NSArray*)anArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">initWithContentsOfFile:</a></h2>
|
<h2><a name="method-22">initWithContentsOfFile:</a></h2>
|
||||||
- (id) <b>initWithContentsOfFile:</b> (NSString*)aPath<br>
|
- (id) <b>initWithContentsOfFile:</b> (NSString*)aPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">initWithObjects:</a></h2>
|
<h2><a name="method-23">initWithObjects:</a></h2>
|
||||||
- (id) <b>initWithObjects:</b> (id)firstObj,<br>
|
- (id) <b>initWithObjects:</b> (id)firstObj,;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">initWithObjects:</a></h2>
|
<h2><a name="method-24">initWithObjects:</a></h2>
|
||||||
- (id) <b>initWithObjects:</b> (id*)objects<br>
|
- (id) <b>initWithObjects:</b> (id*)objects;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">isEqualToArray:</a></h2>
|
<h2><a name="method-25">isEqualToArray:</a></h2>
|
||||||
- (BOOL) <b>isEqualToArray:</b> (NSArray*)otherArray<br>
|
- (BOOL) <b>isEqualToArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">lastObject</a></h2>
|
<h2><a name="method-26">lastObject</a></h2>
|
||||||
- (id) <b>lastObject</b><br>
|
- (id) <b>lastObject</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">makeObjectsPerformSelector:</a></h2>
|
<h2><a name="method-27">makeObjectsPerformSelector:</a></h2>
|
||||||
- (void) <b>makeObjectsPerformSelector:</b> (SEL)aSelector<br>
|
- (void) <b>makeObjectsPerformSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">makeObjectsPerformSelector:withObject:</a></h2>
|
<h2><a name="method-28">makeObjectsPerformSelector:withObject:</a></h2>
|
||||||
- (void) <b>makeObjectsPerformSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anObject<br>
|
- (void) <b>makeObjectsPerformSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-29">objectAtIndex:</a></h2>
|
<h2><a name="method-29">objectAtIndex:</a></h2>
|
||||||
- (id) <b>objectAtIndex:</b> (unsigned int)index<br>
|
- (id) <b>objectAtIndex:</b> (unsigned int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-30">objectEnumerator</a></h2>
|
<h2><a name="method-30">objectEnumerator</a></h2>
|
||||||
- (NSEnumerator*) <b>objectEnumerator</b><br>
|
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-31">pathsMatchingExtensions:</a></h2>
|
<h2><a name="method-31">pathsMatchingExtensions:</a></h2>
|
||||||
- (NSArray*) <b>pathsMatchingExtensions:</b> (NSArray*)filterTypes<br>
|
- (NSArray*) <b>pathsMatchingExtensions:</b> (NSArray*)filterTypes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-32">reverseObjectEnumerator</a></h2>
|
<h2><a name="method-32">reverseObjectEnumerator</a></h2>
|
||||||
- (NSEnumerator*) <b>reverseObjectEnumerator</b><br>
|
- (NSEnumerator*) <b>reverseObjectEnumerator</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-33">sortedArrayHint</a></h2>
|
<h2><a name="method-33">sortedArrayHint</a></h2>
|
||||||
- (NSData*) <b>sortedArrayHint</b><br>
|
- (NSData*) <b>sortedArrayHint</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-34">sortedArrayUsingFunction:context:</a></h2>
|
<h2><a name="method-34">sortedArrayUsingFunction:context:</a></h2>
|
||||||
- (NSArray*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))comparator <b>context:</b> (void*)context<br>
|
- (NSArray*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))comparator <b>context:</b> (void*)context;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-35">sortedArrayUsingFunction:context:</a></h2>
|
<h2><a name="method-35">sortedArrayUsingFunction:context:</a></h2>
|
||||||
- (NSArray*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))compare <b>context:</b> (void*)context<br>
|
- (NSArray*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))compare <b>context:</b> (void*)context;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-36">sortedArrayUsingSelector:</a></h2>
|
<h2><a name="method-36">sortedArrayUsingSelector:</a></h2>
|
||||||
- (NSArray*) <b>sortedArrayUsingSelector:</b> (SEL)comparator<br>
|
- (NSArray*) <b>sortedArrayUsingSelector:</b> (SEL)comparator;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-37">subarrayWithRange:</a></h2>
|
<h2><a name="method-37">subarrayWithRange:</a></h2>
|
||||||
- (NSArray*) <b>subarrayWithRange:</b> (NSRange)range<br>
|
- (NSArray*) <b>subarrayWithRange:</b> (NSRange)range;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-38">writeToFile:atomically:</a></h2>
|
<h2><a name="method-38">writeToFile:atomically:</a></h2>
|
||||||
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag<br>
|
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSAssertionHandler" prev="NSArray.html" next="NSAttributedString.html" up="Base.html">
|
<gsdoc base="NSAssertionHandler" prev="NSArray" next="NSAttributedString" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSAssertionHandler</title>
|
<title>NSAssertionHandler</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -29,17 +29,17 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">currentHandler</a></h2>
|
<h2><a name="method-0">currentHandler</a></h2>
|
||||||
+ (NSAssertionHandler*) <b>currentHandler</b><br>
|
+ (NSAssertionHandler*) <b>currentHandler</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">handleFailureInFunction:file:lineNumber:description:</a></h2>
|
<h2><a name="method-1">handleFailureInFunction:file:lineNumber:description:</a></h2>
|
||||||
- (void) <b>handleFailureInFunction:</b> (NSString*)functionName <b>file:</b> (NSString*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (NSString*)format, ...<br>
|
- (void) <b>handleFailureInFunction:</b> (NSString*)functionName <b>file:</b> (NSString*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (NSString*)format, ...;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">handleFailureInMethod:object:file:lineNumber:description:</a></h2>
|
<h2><a name="method-2">handleFailureInMethod:object:file:lineNumber:description:</a></h2>
|
||||||
- (void) <b>handleFailureInMethod:</b> (SEL)selector <b>object:</b> (id)object <b>file:</b> (NSString*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (NSString*)format, ...<br>
|
- (void) <b>handleFailureInMethod:</b> (SEL)selector <b>object:</b> (id)object <b>file:</b> (NSString*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (NSString*)format, ...;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSAttributedString" prev="NSAssertionHandler.html" next="NSAutoreleasePool.html" up="Base.html">
|
<gsdoc base="NSAttributedString" prev="NSAssertionHandler" next="NSAutoreleasePool" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSAttributedString</title>
|
<title>NSAttributedString</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -37,57 +37,57 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">attribute:atIndex:effectiveRange:</a></h2>
|
<h2><a name="method-0">attribute:atIndex:effectiveRange:</a></h2>
|
||||||
- (id) <b>attribute:</b> (NSString*)attributeName <b>atIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange<br>
|
- (id) <b>attribute:</b> (NSString*)attributeName <b>atIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">attribute:atIndex:longestEffectiveRange:inRange:</a></h2>
|
<h2><a name="method-1">attribute:atIndex:longestEffectiveRange:inRange:</a></h2>
|
||||||
- (id) <b>attribute:</b> (NSString*)attributeName <b>atIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit<br>
|
- (id) <b>attribute:</b> (NSString*)attributeName <b>atIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">attributedSubstringFromRange:</a></h2>
|
<h2><a name="method-2">attributedSubstringFromRange:</a></h2>
|
||||||
- (NSAttributedString*) <b>attributedSubstringFromRange:</b> (NSRange)aRange<br>
|
- (NSAttributedString*) <b>attributedSubstringFromRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">attributesAtIndex:effectiveRange:</a></h2>
|
<h2><a name="method-3">attributesAtIndex:effectiveRange:</a></h2>
|
||||||
- (NSDictionary*) <b>attributesAtIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange<br>
|
- (NSDictionary*) <b>attributesAtIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">attributesAtIndex:longestEffectiveRange:inRange:</a></h2>
|
<h2><a name="method-4">attributesAtIndex:longestEffectiveRange:inRange:</a></h2>
|
||||||
- (NSDictionary*) <b>attributesAtIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit<br>
|
- (NSDictionary*) <b>attributesAtIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">initWithAttributedString:</a></h2>
|
<h2><a name="method-5">initWithAttributedString:</a></h2>
|
||||||
- (id) <b>initWithAttributedString:</b> (NSAttributedString*)attributedString<br>
|
- (id) <b>initWithAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">initWithString:</a></h2>
|
<h2><a name="method-6">initWithString:</a></h2>
|
||||||
- (id) <b>initWithString:</b> (NSString*)aString<br>
|
- (id) <b>initWithString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">initWithString:attributes:</a></h2>
|
<h2><a name="method-7">initWithString:attributes:</a></h2>
|
||||||
- (id) <b>initWithString:</b> (NSString*)aString <b>attributes:</b> (NSDictionary*)attributes<br>
|
- (id) <b>initWithString:</b> (NSString*)aString <b>attributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">isEqualToAttributedString:</a></h2>
|
<h2><a name="method-8">isEqualToAttributedString:</a></h2>
|
||||||
- (BOOL) <b>isEqualToAttributedString:</b> (NSAttributedString*)otherString<br>
|
- (BOOL) <b>isEqualToAttributedString:</b> (NSAttributedString*)otherString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">length</a></h2>
|
<h2><a name="method-9">length</a></h2>
|
||||||
- (unsigned int) <b>length</b><br>
|
- (unsigned int) <b>length</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">string</a></h2>
|
<h2><a name="method-10">string</a></h2>
|
||||||
- (NSString*) <b>string</b><br>
|
- (NSString*) <b>string</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSAutoreleasePool" prev="NSAttributedString.html" next="NSBundle.html" up="Base.html">
|
<gsdoc base="NSAutoreleasePool" prev="NSAttributedString" next="NSBundle" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSAutoreleasePool</title>
|
<title>NSAutoreleasePool</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -28,12 +28,12 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">addObject:</a></h2>
|
<h2><a name="method-0">addObject:</a></h2>
|
||||||
+ (void) <b>addObject:</b> (id)anObject<br>
|
+ (void) <b>addObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">addObject:</a></h2>
|
<h2><a name="method-1">addObject:</a></h2>
|
||||||
- (void) <b>addObject:</b> (id)anObject<br>
|
- (void) <b>addObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSBundle" prev="NSAutoreleasePool.html" next="NSCalendarDate.html" up="Base.html">
|
<gsdoc base="NSBundle" prev="NSAutoreleasePool" next="NSCalendarDate" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSBundle</title>
|
<title>NSBundle</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -43,87 +43,87 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allBundles</a></h2>
|
<h2><a name="method-0">allBundles</a></h2>
|
||||||
+ (NSArray*) <b>allBundles</b><br>
|
+ (NSArray*) <b>allBundles</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">allFrameworks</a></h2>
|
<h2><a name="method-1">allFrameworks</a></h2>
|
||||||
+ (NSArray*) <b>allFrameworks</b><br>
|
+ (NSArray*) <b>allFrameworks</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">bundleForClass:</a></h2>
|
<h2><a name="method-2">bundleForClass:</a></h2>
|
||||||
+ (NSBundle*) <b>bundleForClass:</b> (Class)aClass<br>
|
+ (NSBundle*) <b>bundleForClass:</b> (Class)aClass;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">bundleWithPath:</a></h2>
|
<h2><a name="method-3">bundleWithPath:</a></h2>
|
||||||
+ (NSBundle*) <b>bundleWithPath:</b> (NSString*)path<br>
|
+ (NSBundle*) <b>bundleWithPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">mainBundle</a></h2>
|
<h2><a name="method-4">mainBundle</a></h2>
|
||||||
+ (NSBundle*) <b>mainBundle</b><br>
|
+ (NSBundle*) <b>mainBundle</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">pathForResource:ofType:inDirectory:</a></h2>
|
<h2><a name="method-5">pathForResource:ofType:inDirectory:</a></h2>
|
||||||
+ (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath<br>
|
+ (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">bundlePath</a></h2>
|
<h2><a name="method-6">bundlePath</a></h2>
|
||||||
- (NSString*) <b>bundlePath</b><br>
|
- (NSString*) <b>bundlePath</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">classNamed:</a></h2>
|
<h2><a name="method-7">classNamed:</a></h2>
|
||||||
- (Class) <b>classNamed:</b> (NSString*)className<br>
|
- (Class) <b>classNamed:</b> (NSString*)className;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">infoDictionary</a></h2>
|
<h2><a name="method-8">infoDictionary</a></h2>
|
||||||
- (NSDictionary*) <b>infoDictionary</b><br>
|
- (NSDictionary*) <b>infoDictionary</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">initWithPath:</a></h2>
|
<h2><a name="method-9">initWithPath:</a></h2>
|
||||||
- (id) <b>initWithPath:</b> (NSString*)fullPath<br>
|
- (id) <b>initWithPath:</b> (NSString*)fullPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">load</a></h2>
|
<h2><a name="method-10">load</a></h2>
|
||||||
- (BOOL) <b>load</b><br>
|
- (BOOL) <b>load</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">localizedStringForKey:value:</a></h2>
|
<h2><a name="method-11">localizedStringForKey:value:</a></h2>
|
||||||
- (NSString*) <b>localizedStringForKey:</b> (NSString*)key <b>value:</b> (NSString*)value<br>
|
- (NSString*) <b>localizedStringForKey:</b> (NSString*)key <b>value:</b> (NSString*)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">pathForResource:ofType:</a></h2>
|
<h2><a name="method-12">pathForResource:ofType:</a></h2>
|
||||||
- (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension<br>
|
- (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">pathForResource:ofType:inDirectory:</a></h2>
|
<h2><a name="method-13">pathForResource:ofType:inDirectory:</a></h2>
|
||||||
- (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath<br>
|
- (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">pathsForResourcesOfType:inDirectory:</a></h2>
|
<h2><a name="method-14">pathsForResourcesOfType:inDirectory:</a></h2>
|
||||||
- (NSArray*) <b>pathsForResourcesOfType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath<br>
|
- (NSArray*) <b>pathsForResourcesOfType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">principalClass</a></h2>
|
<h2><a name="method-15">principalClass</a></h2>
|
||||||
- (Class) <b>principalClass</b><br>
|
- (Class) <b>principalClass</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">resourcePath</a></h2>
|
<h2><a name="method-16">resourcePath</a></h2>
|
||||||
- (NSString*) <b>resourcePath</b><br>
|
- (NSString*) <b>resourcePath</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSCalendarDate" prev="NSBundle.html" next="NSCharacterSet.html" up="Base.html">
|
<gsdoc base="NSCalendarDate" prev="NSBundle" next="NSCharacterSet" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSCalendarDate</title>
|
<title>NSCalendarDate</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -53,137 +53,137 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">calendarDate</a></h2>
|
<h2><a name="method-0">calendarDate</a></h2>
|
||||||
+ (id) <b>calendarDate</b><br>
|
+ (id) <b>calendarDate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">dateWithString:calendarFormat:</a></h2>
|
<h2><a name="method-1">dateWithString:calendarFormat:</a></h2>
|
||||||
+ (id) <b>dateWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format<br>
|
+ (id) <b>dateWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">dateWithString:calendarFormat:</a></h2>
|
<h2><a name="method-2">dateWithString:calendarFormat:</a></h2>
|
||||||
+ (id) <b>dateWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format<br>
|
+ (id) <b>dateWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">dateWithYear:month:day:hour:minute:second:timeZone:</a></h2>
|
<h2><a name="method-3">dateWithYear:month:day:hour:minute:second:timeZone:</a></h2>
|
||||||
+ (id) <b>dateWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (NSTimeZone*)aTimeZone<br>
|
+ (id) <b>dateWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">calendarFormat</a></h2>
|
<h2><a name="method-4">calendarFormat</a></h2>
|
||||||
- (NSString*) <b>calendarFormat</b><br>
|
- (NSString*) <b>calendarFormat</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">dateByAddingYears:months:days:hours:minutes:seconds:</a></h2>
|
<h2><a name="method-5">dateByAddingYears:months:days:hours:minutes:seconds:</a></h2>
|
||||||
- (NSCalendarDate*) <b>dateByAddingYears:</b> (int)year <b>months:</b> (int)month <b>days:</b> (int)day <b>hours:</b> (int)hour <b>minutes:</b> (int)minute <b>seconds:</b> (int)second<br>
|
- (NSCalendarDate*) <b>dateByAddingYears:</b> (int)year <b>months:</b> (int)month <b>days:</b> (int)day <b>hours:</b> (int)hour <b>minutes:</b> (int)minute <b>seconds:</b> (int)second;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">dayOfCommonEra</a></h2>
|
<h2><a name="method-6">dayOfCommonEra</a></h2>
|
||||||
- (int) <b>dayOfCommonEra</b><br>
|
- (int) <b>dayOfCommonEra</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">dayOfMonth</a></h2>
|
<h2><a name="method-7">dayOfMonth</a></h2>
|
||||||
- (int) <b>dayOfMonth</b><br>
|
- (int) <b>dayOfMonth</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">dayOfWeek</a></h2>
|
<h2><a name="method-8">dayOfWeek</a></h2>
|
||||||
- (int) <b>dayOfWeek</b><br>
|
- (int) <b>dayOfWeek</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">dayOfYear</a></h2>
|
<h2><a name="method-9">dayOfYear</a></h2>
|
||||||
- (int) <b>dayOfYear</b><br>
|
- (int) <b>dayOfYear</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">description</a></h2>
|
<h2><a name="method-10">description</a></h2>
|
||||||
- (NSString*) <b>description</b><br>
|
- (NSString*) <b>description</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">descriptionWithCalendarFormat:</a></h2>
|
<h2><a name="method-11">descriptionWithCalendarFormat:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)format<br>
|
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">descriptionWithCalendarFormat:</a></h2>
|
<h2><a name="method-12">descriptionWithCalendarFormat:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)format<br>
|
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">hourOfDay</a></h2>
|
<h2><a name="method-14">hourOfDay</a></h2>
|
||||||
- (int) <b>hourOfDay</b><br>
|
- (int) <b>hourOfDay</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">initWithString:</a></h2>
|
<h2><a name="method-15">initWithString:</a></h2>
|
||||||
- (id) <b>initWithString:</b> (NSString*)description<br>
|
- (id) <b>initWithString:</b> (NSString*)description;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">initWithString:calendarFormat:</a></h2>
|
<h2><a name="method-16">initWithString:calendarFormat:</a></h2>
|
||||||
- (id) <b>initWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format<br>
|
- (id) <b>initWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">initWithString:calendarFormat:</a></h2>
|
<h2><a name="method-17">initWithString:calendarFormat:</a></h2>
|
||||||
- (id) <b>initWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format<br>
|
- (id) <b>initWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">initWithYear:month:day:hour:minute:second:timeZone:</a></h2>
|
<h2><a name="method-18">initWithYear:month:day:hour:minute:second:timeZone:</a></h2>
|
||||||
- (id) <b>initWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (NSTimeZone*)aTimeZone<br>
|
- (id) <b>initWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">minuteOfHour</a></h2>
|
<h2><a name="method-19">minuteOfHour</a></h2>
|
||||||
- (int) <b>minuteOfHour</b><br>
|
- (int) <b>minuteOfHour</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">monthOfYear</a></h2>
|
<h2><a name="method-20">monthOfYear</a></h2>
|
||||||
- (int) <b>monthOfYear</b><br>
|
- (int) <b>monthOfYear</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">secondOfMinute</a></h2>
|
<h2><a name="method-21">secondOfMinute</a></h2>
|
||||||
- (int) <b>secondOfMinute</b><br>
|
- (int) <b>secondOfMinute</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">setCalendarFormat:</a></h2>
|
<h2><a name="method-22">setCalendarFormat:</a></h2>
|
||||||
- (void) <b>setCalendarFormat:</b> (NSString*)format<br>
|
- (void) <b>setCalendarFormat:</b> (NSString*)format;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">setTimeZone:</a></h2>
|
<h2><a name="method-23">setTimeZone:</a></h2>
|
||||||
- (void) <b>setTimeZone:</b> (NSTimeZone*)aTimeZone<br>
|
- (void) <b>setTimeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">timeZone</a></h2>
|
<h2><a name="method-24">timeZone</a></h2>
|
||||||
- (NSTimeZone*) <b>timeZone</b><br>
|
- (NSTimeZone*) <b>timeZone</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">yearOfCommonEra</a></h2>
|
<h2><a name="method-25">yearOfCommonEra</a></h2>
|
||||||
- (int) <b>yearOfCommonEra</b><br>
|
- (int) <b>yearOfCommonEra</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">years:months:days:hours:minutes:seconds:sinceDate:</a></h2>
|
<h2><a name="method-26">years:months:days:hours:minutes:seconds:sinceDate:</a></h2>
|
||||||
- (void) <b>years:</b> (int*)yearsPointer <b>months:</b> (int*)monthsPointer <b>days:</b> (int*)daysPointer <b>hours:</b> (int*)hoursPointer <b>minutes:</b> (int*)minutesPointer <b>seconds:</b> (int*)secondsPointer <b>sinceDate:</b> (NSCalendarDate*)date<br>
|
- (void) <b>years:</b> (int*)yearsPointer <b>months:</b> (int*)monthsPointer <b>days:</b> (int*)daysPointer <b>hours:</b> (int*)hoursPointer <b>minutes:</b> (int*)minutesPointer <b>seconds:</b> (int*)secondsPointer <b>sinceDate:</b> (NSCalendarDate*)date;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSCharacterSet" prev="NSCalendarDate.html" next="NSCoder.html" up="Base.html">
|
<gsdoc base="NSCharacterSet" prev="NSCalendarDate" next="NSCoder" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSCharacterSet</title>
|
<title>NSCharacterSet</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -45,97 +45,97 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">alphanumericCharacterSet</a></h2>
|
<h2><a name="method-0">alphanumericCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>alphanumericCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>alphanumericCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">characterSetWithBitmapRepresentation:</a></h2>
|
<h2><a name="method-1">characterSetWithBitmapRepresentation:</a></h2>
|
||||||
+ (NSCharacterSet*) <b>characterSetWithBitmapRepresentation:</b> (NSData*)data<br>
|
+ (NSCharacterSet*) <b>characterSetWithBitmapRepresentation:</b> (NSData*)data;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">characterSetWithCharactersInString:</a></h2>
|
<h2><a name="method-2">characterSetWithCharactersInString:</a></h2>
|
||||||
+ (NSCharacterSet*) <b>characterSetWithCharactersInString:</b> (NSString*)aString<br>
|
+ (NSCharacterSet*) <b>characterSetWithCharactersInString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">characterSetWithContentsOfFile:</a></h2>
|
<h2><a name="method-3">characterSetWithContentsOfFile:</a></h2>
|
||||||
+ (NSCharacterSet*) <b>characterSetWithContentsOfFile:</b> (NSString*)path<br>
|
+ (NSCharacterSet*) <b>characterSetWithContentsOfFile:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">characterSetWithRange:</a></h2>
|
<h2><a name="method-4">characterSetWithRange:</a></h2>
|
||||||
+ (NSCharacterSet*) <b>characterSetWithRange:</b> (NSRange)aRange<br>
|
+ (NSCharacterSet*) <b>characterSetWithRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">controlCharacterSet</a></h2>
|
<h2><a name="method-5">controlCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>controlCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>controlCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">decimalDigitCharacterSet</a></h2>
|
<h2><a name="method-6">decimalDigitCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>decimalDigitCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>decimalDigitCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">decomposableCharacterSet</a></h2>
|
<h2><a name="method-7">decomposableCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>decomposableCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>decomposableCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">illegalCharacterSet</a></h2>
|
<h2><a name="method-8">illegalCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>illegalCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>illegalCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">letterCharacterSet</a></h2>
|
<h2><a name="method-9">letterCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>letterCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>letterCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">lowercaseLetterCharacterSet</a></h2>
|
<h2><a name="method-10">lowercaseLetterCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>lowercaseLetterCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>lowercaseLetterCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">nonBaseCharacterSet</a></h2>
|
<h2><a name="method-11">nonBaseCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>nonBaseCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>nonBaseCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">punctuationCharacterSet</a></h2>
|
<h2><a name="method-12">punctuationCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>punctuationCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>punctuationCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">uppercaseLetterCharacterSet</a></h2>
|
<h2><a name="method-13">uppercaseLetterCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>uppercaseLetterCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>uppercaseLetterCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">whitespaceAndNewlineCharacterSet</a></h2>
|
<h2><a name="method-14">whitespaceAndNewlineCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>whitespaceAndNewlineCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>whitespaceAndNewlineCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">whitespaceCharacterSet</a></h2>
|
<h2><a name="method-15">whitespaceCharacterSet</a></h2>
|
||||||
+ (NSCharacterSet*) <b>whitespaceCharacterSet</b><br>
|
+ (NSCharacterSet*) <b>whitespaceCharacterSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">bitmapRepresentation</a></h2>
|
<h2><a name="method-16">bitmapRepresentation</a></h2>
|
||||||
- (NSData*) <b>bitmapRepresentation</b><br>
|
- (NSData*) <b>bitmapRepresentation</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">characterIsMember:</a></h2>
|
<h2><a name="method-17">characterIsMember:</a></h2>
|
||||||
- (BOOL) <b>characterIsMember:</b> (unichar)aCharacter<br>
|
- (BOOL) <b>characterIsMember:</b> (unichar)aCharacter;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">invertedSet</a></h2>
|
<h2><a name="method-18">invertedSet</a></h2>
|
||||||
- (NSCharacterSet*) <b>invertedSet</b><br>
|
- (NSCharacterSet*) <b>invertedSet</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSCoder" prev="NSCharacterSet.html" next="NSConditionLock.html" up="Base.html">
|
<gsdoc base="NSCoder" prev="NSCharacterSet" next="NSConditionLock" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSCoder</title>
|
<title>NSCoder</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -54,142 +54,142 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">decodeArrayOfObjCType:count:at:</a></h2>
|
<h2><a name="method-0">decodeArrayOfObjCType:count:at:</a></h2>
|
||||||
- (void) <b>decodeArrayOfObjCType:</b> (const char*)itemType <b>count:</b> (unsigned int)count <b>at:</b> (void*)address<br>
|
- (void) <b>decodeArrayOfObjCType:</b> (const char*)itemType <b>count:</b> (unsigned int)count <b>at:</b> (void*)address;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">decodeBytesWithReturnedLength:</a></h2>
|
<h2><a name="method-1">decodeBytesWithReturnedLength:</a></h2>
|
||||||
- (void*) <b>decodeBytesWithReturnedLength:</b> (unsigned int*)numBytes<br>
|
- (void*) <b>decodeBytesWithReturnedLength:</b> (unsigned int*)numBytes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">decodeDataObject</a></h2>
|
<h2><a name="method-2">decodeDataObject</a></h2>
|
||||||
- (NSData*) <b>decodeDataObject</b><br>
|
- (NSData*) <b>decodeDataObject</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">decodeObject</a></h2>
|
<h2><a name="method-3">decodeObject</a></h2>
|
||||||
- (id) <b>decodeObject</b><br>
|
- (id) <b>decodeObject</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">decodePoint</a></h2>
|
<h2><a name="method-4">decodePoint</a></h2>
|
||||||
- (NSPoint) <b>decodePoint</b><br>
|
- (NSPoint) <b>decodePoint</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">decodePropertyList</a></h2>
|
<h2><a name="method-5">decodePropertyList</a></h2>
|
||||||
- (id) <b>decodePropertyList</b><br>
|
- (id) <b>decodePropertyList</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">decodeRect</a></h2>
|
<h2><a name="method-6">decodeRect</a></h2>
|
||||||
- (NSRect) <b>decodeRect</b><br>
|
- (NSRect) <b>decodeRect</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">decodeSize</a></h2>
|
<h2><a name="method-7">decodeSize</a></h2>
|
||||||
- (NSSize) <b>decodeSize</b><br>
|
- (NSSize) <b>decodeSize</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">decodeValueOfObjCType:</a></h2>
|
<h2><a name="method-8">decodeValueOfObjCType:</a></h2>
|
||||||
- (void) <b>decodeValueOfObjCType:</b> (const char*)valueType<br>
|
- (void) <b>decodeValueOfObjCType:</b> (const char*)valueType;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">decodeValuesOfObjCTypes:</a></h2>
|
<h2><a name="method-9">decodeValuesOfObjCTypes:</a></h2>
|
||||||
- (void) <b>decodeValuesOfObjCTypes:</b> (const char*)valueTypes,<br>
|
- (void) <b>decodeValuesOfObjCTypes:</b> (const char*)valueTypes,;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">encodeArrayOfObjCType:count:at:</a></h2>
|
<h2><a name="method-10">encodeArrayOfObjCType:count:at:</a></h2>
|
||||||
- (void) <b>encodeArrayOfObjCType:</b> (const char*)itemType <b>count:</b> (unsigned int)count <b>at:</b> (const void*)address<br>
|
- (void) <b>encodeArrayOfObjCType:</b> (const char*)itemType <b>count:</b> (unsigned int)count <b>at:</b> (const void*)address;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">encodeBycopyObject:</a></h2>
|
<h2><a name="method-11">encodeBycopyObject:</a></h2>
|
||||||
- (void) <b>encodeBycopyObject:</b> (id)object<br>
|
- (void) <b>encodeBycopyObject:</b> (id)object;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">encodeByrefObject:</a></h2>
|
<h2><a name="method-12">encodeByrefObject:</a></h2>
|
||||||
- (void) <b>encodeByrefObject:</b> (id)object<br>
|
- (void) <b>encodeByrefObject:</b> (id)object;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">encodeBytes:</a></h2>
|
<h2><a name="method-13">encodeBytes:</a></h2>
|
||||||
- (void) <b>encodeBytes:</b> (void*)address<br>
|
- (void) <b>encodeBytes:</b> (void*)address;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">encodeConditionalObject:</a></h2>
|
<h2><a name="method-14">encodeConditionalObject:</a></h2>
|
||||||
- (void) <b>encodeConditionalObject:</b> (id)object<br>
|
- (void) <b>encodeConditionalObject:</b> (id)object;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">encodeDataObject:</a></h2>
|
<h2><a name="method-15">encodeDataObject:</a></h2>
|
||||||
- (void) <b>encodeDataObject:</b> (NSData*)data<br>
|
- (void) <b>encodeDataObject:</b> (NSData*)data;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">encodeObject:</a></h2>
|
<h2><a name="method-16">encodeObject:</a></h2>
|
||||||
- (void) <b>encodeObject:</b> (id)object<br>
|
- (void) <b>encodeObject:</b> (id)object;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">encodePoint:</a></h2>
|
<h2><a name="method-17">encodePoint:</a></h2>
|
||||||
- (void) <b>encodePoint:</b> (NSPoint)point<br>
|
- (void) <b>encodePoint:</b> (NSPoint)point;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">encodePropertyList:</a></h2>
|
<h2><a name="method-18">encodePropertyList:</a></h2>
|
||||||
- (void) <b>encodePropertyList:</b> (id)aPropertyList<br>
|
- (void) <b>encodePropertyList:</b> (id)aPropertyList;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">encodeRect:</a></h2>
|
<h2><a name="method-19">encodeRect:</a></h2>
|
||||||
- (void) <b>encodeRect:</b> (NSRect)rect<br>
|
- (void) <b>encodeRect:</b> (NSRect)rect;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">encodeRootObject:</a></h2>
|
<h2><a name="method-20">encodeRootObject:</a></h2>
|
||||||
- (void) <b>encodeRootObject:</b> (id)rootObject<br>
|
- (void) <b>encodeRootObject:</b> (id)rootObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">encodeSize:</a></h2>
|
<h2><a name="method-21">encodeSize:</a></h2>
|
||||||
- (void) <b>encodeSize:</b> (NSSize)size<br>
|
- (void) <b>encodeSize:</b> (NSSize)size;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">encodeValueOfObjCType:</a></h2>
|
<h2><a name="method-22">encodeValueOfObjCType:</a></h2>
|
||||||
- (void) <b>encodeValueOfObjCType:</b> (const char*)valueType<br>
|
- (void) <b>encodeValueOfObjCType:</b> (const char*)valueType;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">encodeValuesOfObjCTypes:</a></h2>
|
<h2><a name="method-23">encodeValuesOfObjCTypes:</a></h2>
|
||||||
- (void) <b>encodeValuesOfObjCTypes:</b> (const char*)valueTypes,<br>
|
- (void) <b>encodeValuesOfObjCTypes:</b> (const char*)valueTypes,;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">objectZone</a></h2>
|
<h2><a name="method-24">objectZone</a></h2>
|
||||||
- (NSZone*) <b>objectZone</b><br>
|
- (NSZone*) <b>objectZone</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">setObjectZone:</a></h2>
|
<h2><a name="method-25">setObjectZone:</a></h2>
|
||||||
- (void) <b>setObjectZone:</b> (NSZone*)zone<br>
|
- (void) <b>setObjectZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">systemVersion</a></h2>
|
<h2><a name="method-26">systemVersion</a></h2>
|
||||||
- (unsigned int) <b>systemVersion</b><br>
|
- (unsigned int) <b>systemVersion</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">versionForClassName:</a></h2>
|
<h2><a name="method-27">versionForClassName:</a></h2>
|
||||||
- (unsigned int) <b>versionForClassName:</b> (NSString*)className<br>
|
- (unsigned int) <b>versionForClassName:</b> (NSString*)className;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSConditionLock" prev="NSCoder.html" next="NSConnection.html" up="Base.html">
|
<gsdoc base="NSConditionLock" prev="NSCoder" next="NSConnection" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSConditionLock</title>
|
<title>NSConditionLock</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -34,42 +34,42 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">condition</a></h2>
|
<h2><a name="method-0">condition</a></h2>
|
||||||
- (int) <b>condition</b><br>
|
- (int) <b>condition</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">initWithCondition:</a></h2>
|
<h2><a name="method-1">initWithCondition:</a></h2>
|
||||||
- (id) <b>initWithCondition:</b> (int)condition<br>
|
- (id) <b>initWithCondition:</b> (int)condition;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">lockBeforeDate:</a></h2>
|
<h2><a name="method-2">lockBeforeDate:</a></h2>
|
||||||
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit<br>
|
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">lockWhenCondition:</a></h2>
|
<h2><a name="method-3">lockWhenCondition:</a></h2>
|
||||||
- (void) <b>lockWhenCondition:</b> (int)condition<br>
|
- (void) <b>lockWhenCondition:</b> (int)condition;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">lockWhenCondition:beforeDate:</a></h2>
|
<h2><a name="method-4">lockWhenCondition:beforeDate:</a></h2>
|
||||||
- (BOOL) <b>lockWhenCondition:</b> (int)condition <b>beforeDate:</b> (NSDate*)limit<br>
|
- (BOOL) <b>lockWhenCondition:</b> (int)condition <b>beforeDate:</b> (NSDate*)limit;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">tryLock</a></h2>
|
<h2><a name="method-5">tryLock</a></h2>
|
||||||
- (BOOL) <b>tryLock</b><br>
|
- (BOOL) <b>tryLock</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">tryLockWhenCondition:</a></h2>
|
<h2><a name="method-6">tryLockWhenCondition:</a></h2>
|
||||||
- (BOOL) <b>tryLockWhenCondition:</b> (int)condition<br>
|
- (BOOL) <b>tryLockWhenCondition:</b> (int)condition;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">unlockWithCondition:</a></h2>
|
<h2><a name="method-7">unlockWithCondition:</a></h2>
|
||||||
- (void) <b>unlockWithCondition:</b> (int)condition<br>
|
- (void) <b>unlockWithCondition:</b> (int)condition;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSConnection" prev="NSConditionLock.html" next="NSCountedSet.html" up="Base.html">
|
<gsdoc base="NSConnection" prev="NSConditionLock" next="NSCountedSet" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSConnection</title>
|
<title>NSConnection</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
<email address="rfm@gnu.org"/>
|
<email address="rfm@gnu.org"/>
|
||||||
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
|
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
|
||||||
</author>
|
</author>
|
||||||
<version>0.1</version>
|
<version>0.2</version>
|
||||||
<date>28 February, 2000</date>
|
<date>4 July, 2000</date>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<chapter>
|
<chapter>
|
||||||
|
@ -17,216 +17,574 @@
|
||||||
<declared>Foundation/NSConnection.h</declared>
|
<declared>Foundation/NSConnection.h</declared>
|
||||||
<conform>NSObject</conform>
|
<conform>NSObject</conform>
|
||||||
<desc>
|
<desc>
|
||||||
|
NSConnection objects are used to manage communications between
|
||||||
|
objects in different processes, in different machines, or in
|
||||||
|
different threads.
|
||||||
</desc>
|
</desc>
|
||||||
<method type="NSArray*" factory="yes">
|
<method type="NSArray*" factory="yes">
|
||||||
<sel>allConnections</sel>
|
<sel>allConnections</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns an array containing all the NSConnection objects known to
|
||||||
|
the system. These connections will be valid at the time that the
|
||||||
|
array was created, but may be invalidated by other threads
|
||||||
|
before you get to examine the array.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSConnection*" factory="yes">
|
<method type="NSConnection*" factory="yes">
|
||||||
<sel>connectionWithReceivePort:</sel>
|
<sel>connectionWithReceivePort:</sel>
|
||||||
<arg type="NSPort*">receivePort</arg>
|
<arg type="NSPort*">receivePort</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns a connection created using
|
||||||
|
<ref id="initWithReceivePort:sendPort:">
|
||||||
|
initWithReceivePort:sendPort:</ref>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSConnection*" factory="yes">
|
<method type="NSConnection*" factory="yes">
|
||||||
<sel>connectionWithRegisteredName:</sel>
|
<sel>connectionWithRegisteredName:</sel>
|
||||||
<arg type="NSString*">name</arg>
|
<arg type="NSString*">name</arg>
|
||||||
|
<sel>host:</sel>
|
||||||
|
<arg type="NSString*">hostName</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>
|
||||||
|
Returns an NSConnection object whose send port is that of the
|
||||||
|
NSConnection registered under <em>name</em> on the host
|
||||||
|
<em>hostName</em>.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
This method calls
|
||||||
|
<ref id="connectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
connectionWithRegisteredName:host:usingNameServer:</ref> using
|
||||||
|
the default system name server.
|
||||||
|
</p>
|
||||||
|
</desc>
|
||||||
|
</method>
|
||||||
|
<method type="NSConnection*" factory="yes"
|
||||||
|
id="connectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
<sel>connectionWithRegisteredName:</sel>
|
||||||
|
<arg type="NSString*">name</arg>
|
||||||
|
<sel>host:</sel>
|
||||||
|
<arg type="NSString*">host</arg>
|
||||||
|
<sel>usingNameServer:</sel>
|
||||||
|
<arg type="NSPortNameServer*">server</arg>
|
||||||
|
<desc>
|
||||||
|
<p>
|
||||||
|
Returns an NSConnection object whose send port is that of the
|
||||||
|
NSConnection registered under <em>name</em> on <em>host</em>.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The nameserver <em>server</em> is used to look up the send
|
||||||
|
port to be used for the connection.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If <em>host</em> is <code>nil</code> 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.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If no NSConnection can be found for <em>name</em> and
|
||||||
|
<em>host</em>host, the method returns <code>nil</code>.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The returned object has the default NSConnection of the
|
||||||
|
current thread as its parent (it has the same receive port
|
||||||
|
as the default connection).
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="id" factory="yes">
|
<method type="id" factory="yes">
|
||||||
<sel>currentConversation</sel>
|
<sel>currentConversation</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Not implemented
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSConnection*" factory="yes">
|
<method type="NSConnection*" factory="yes">
|
||||||
<sel>defaultConnection</sel>
|
<sel>defaultConnection</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the default NSConnection for the current thread.
|
||||||
|
<br/>
|
||||||
|
Creates a new instance if necessary.
|
||||||
|
<br/>
|
||||||
|
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.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
|
<method type="NSConnection*" factory="yes">
|
||||||
|
<sel>newRegisteringAtName:</sel>
|
||||||
|
<arg type="NSString*">name</arg>
|
||||||
|
<sel>withRootObject:</sel>
|
||||||
|
<arg type="id">anObject</arg>
|
||||||
|
<desc>
|
||||||
|
This used to be the preferred mechanism for creating a GNUstep
|
||||||
|
server NSConnection ... it is now deprecated.
|
||||||
|
<br/>
|
||||||
|
This is a convenience method for -
|
||||||
|
<example>
|
||||||
|
NSConnection *conn;
|
||||||
|
|
||||||
|
conn = [[NSConnection alloc] initWithReceivePort: [NSPort port]
|
||||||
|
sendPort: nil];
|
||||||
|
[conn setRootObject: anObject];
|
||||||
|
if ([conn registerName: name] == NO)
|
||||||
|
{
|
||||||
|
DESTROY(conn);
|
||||||
|
}
|
||||||
|
return conn;
|
||||||
|
</example>
|
||||||
|
</desc>
|
||||||
|
<standards><GNUstep/><NotMacOS-X/><NotOpenStep/></standards>
|
||||||
|
</method>
|
||||||
<method type="NSDistantObject*" factory="yes">
|
<method type="NSDistantObject*" factory="yes">
|
||||||
<sel>rootProxyForConnectionWithRegisteredName:</sel>
|
<sel>rootProxyForConnectionWithRegisteredName:</sel>
|
||||||
<arg type="NSString*">name</arg>
|
<arg type="NSString*">name</arg>
|
||||||
|
<sel>host:</sel>
|
||||||
|
<arg type="NSString*">host</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
This method calls <ref
|
||||||
|
id="rootProxyForConnectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
rootProxyForConnectionWithRegisteredName:host:usingNameServer:</ref>
|
||||||
|
to return a proxy for a root object on the remote connection with
|
||||||
|
the send port registered under <em>name</em> on <em>host</em>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
|
<method type="NSDistantObject*" factory="yes"
|
||||||
|
id="rootProxyForConnectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
<sel>rootProxyForConnectionWithRegisteredName:</sel>
|
||||||
|
<arg type="NSString*">name</arg>
|
||||||
|
<sel>host:</sel>
|
||||||
|
<arg type="NSString*">host</arg>
|
||||||
|
<sel>usingNameServer:</sel>
|
||||||
|
<arg type="NSPortNameServer*">server</arg>
|
||||||
|
<desc>
|
||||||
|
This method calls
|
||||||
|
<ref id="connectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
connectionWithRegisteredName:host:usingNameServer:</ref>
|
||||||
|
to get a connection, then sends it a
|
||||||
|
<ref id="rootproxy">rootProxy</ref> message to get a proxy for
|
||||||
|
the root object being vended by the remote connection.
|
||||||
|
Returns the proxy or <code>nil</code> if it couldn't find
|
||||||
|
a connection or if the root object for the connection has
|
||||||
|
not been set.
|
||||||
|
</desc>
|
||||||
|
<standards><GNUstep/><MacOS-X/><NotOpenStep/></standards>
|
||||||
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>addRequestMode:</sel>
|
<sel>addRequestMode:</sel>
|
||||||
<arg type="NSString*">mode</arg>
|
<arg type="NSString*">mode</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Adds <em>mode</em> to the run loop modes that the NSConnection
|
||||||
|
will listen to for incoming messages.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>addRunLoop:</sel>
|
<sel>addRunLoop:</sel>
|
||||||
<arg type="NSRunLoop*">runloop</arg>
|
<arg type="NSRunLoop*">loop</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Adds <em>loop</em> to the set of run loops that the NSConnection
|
||||||
|
will listen to for incoming messages.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="id">
|
<method type="id">
|
||||||
<sel>delegate</sel>
|
<sel>delegate</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the delegate of the NSConnection.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>enableMultipleThreads</sel>
|
<sel>enableMultipleThreads</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Sets the NSConnection configuration so that multiple threads may
|
||||||
|
use the connection to send requests to the remote connection.
|
||||||
|
<br/>
|
||||||
|
This option is inherited by child connections.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="BOOL">
|
<method type="BOOL">
|
||||||
<sel>independentConversationQueueing</sel>
|
<sel>independentConversationQueueing</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns <code>YES</code> if the NSConnection is configured to
|
||||||
|
handle remote messages atomically, <code>NO</code> otherwise.
|
||||||
|
<br/>
|
||||||
|
This option is inherited by child connections.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="id">
|
<method init="yes" type="id" id="initWithReceivePort:sendPort:">
|
||||||
<sel>initWithReceivePort:</sel>
|
<sel>initWithReceivePort:</sel>
|
||||||
<arg type="NSPort*">receivePort</arg>
|
<arg type="NSPort*">recv</arg>
|
||||||
|
<sel>sendPort:</sel>
|
||||||
|
<arg type="NSPort*">send</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Initialises an NSConnection with <em>recv</em> and <em>send</em>.
|
||||||
|
<br/>
|
||||||
|
Behavior varies with the port values as follows -
|
||||||
|
<deflist>
|
||||||
|
<term><em>recv</em> is <code>nil</code></term>
|
||||||
|
<desc>
|
||||||
|
The NSConnection is released and the method returns
|
||||||
|
<code>nil</code>.
|
||||||
|
</desc>
|
||||||
|
<term><em>send</em> is <code>nil</code></term>
|
||||||
|
<desc>
|
||||||
|
The NSConnection uses <em>recv</em> as the send port as
|
||||||
|
well as the receive port.
|
||||||
|
</desc>
|
||||||
|
<term><em>send</em> is the same as <em>recv</em></term>
|
||||||
|
<desc>
|
||||||
|
The NSConnection is usable only for vending objects.
|
||||||
|
</desc>
|
||||||
|
<term>A connection with the same ports exists</term>
|
||||||
|
<desc>
|
||||||
|
The new connection is released and the old connection
|
||||||
|
is retained and returned.
|
||||||
|
</desc>
|
||||||
|
<term>A connection with the same ports (swapped) exists</term>
|
||||||
|
<desc>
|
||||||
|
The new connection is initialised as normal, and will
|
||||||
|
communicate with the old connection.
|
||||||
|
</desc>
|
||||||
|
</deflist>
|
||||||
|
<p>
|
||||||
|
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.
|
||||||
|
<br/>
|
||||||
|
NSConnectionDidInitializeNotification is posted once a new
|
||||||
|
connection is initialised.
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>invalidate</sel>
|
<sel>invalidate</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Marks the receiving NSConnection as invalid.
|
||||||
|
<br/>
|
||||||
|
Removes the NSConnections ports from any run loops.
|
||||||
|
<br/>
|
||||||
|
Posts an NSConnectionDidDieNotification.
|
||||||
|
<br/>
|
||||||
|
Invalidates all remote objects and local proxies.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="BOOL">
|
<method type="BOOL">
|
||||||
<sel>isValid</sel>
|
<sel>isValid</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns <code>YES</code> if the connection is invalid,
|
||||||
|
<code>NO</code> otherwise.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSArray*">
|
<method type="NSArray*">
|
||||||
<sel>localObjects</sel>
|
<sel>localObjects</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns an array of all the local proxies to objects that
|
||||||
|
are retained by the remote connection.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="BOOL">
|
<method type="BOOL">
|
||||||
<sel>multipleThreadsEnabled</sel>
|
<sel>multipleThreadsEnabled</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns <code>YES</code> if the connection permits
|
||||||
|
multiple threads to use it to send requests,
|
||||||
|
<code>NO</code> otherwise.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSPort*">
|
<method type="NSPort*">
|
||||||
<sel>receivePort</sel>
|
<sel>receivePort</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the NSPort object on which incoming messages are
|
||||||
|
recieved.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="BOOL">
|
<method type="BOOL">
|
||||||
<sel>registerName:</sel>
|
<sel>registerName:</sel>
|
||||||
<arg type="NSString*">name</arg>
|
<arg type="NSString*">name</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Simply invokes <ref id="registerName:usingNameServer:">
|
||||||
|
registerName:usingNameServer:</ref> passing it the default
|
||||||
|
system nameserver.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
|
<method type="BOOL">
|
||||||
|
<sel>registerName:</sel>
|
||||||
|
<arg type="NSString*">name</arg>
|
||||||
|
<sel>withNameServer:</sel>
|
||||||
|
<arg type="NSPortNameServer*">server</arg>
|
||||||
|
<desc>
|
||||||
|
Registers the recieve port of the NSConnection as <em>name</em> and
|
||||||
|
unregisters the previous name (if any).
|
||||||
|
<br/>
|
||||||
|
Returns <code>YES</code> on success, <code>NO</code> on failure.
|
||||||
|
<br/>
|
||||||
|
On failure, the connection remains registered under the
|
||||||
|
previous name.
|
||||||
|
<br/>
|
||||||
|
Supply <code>nil</code> as <em>name</em> to unregister the
|
||||||
|
NSConnection.
|
||||||
|
</desc>
|
||||||
|
<standards><GNUstep/><MacOS-X/><NotOpenStep/></standards>
|
||||||
|
</method>
|
||||||
<method type="NSArray*">
|
<method type="NSArray*">
|
||||||
<sel>remoteObjects</sel>
|
<sel>remoteObjects</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns an array of proxies to all the remote objects known to
|
||||||
|
the NSConnection.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>removeRequestMode:</sel>
|
<sel>removeRequestMode:</sel>
|
||||||
<arg type="NSString*">mode</arg>
|
<arg type="NSString*">mode</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Removes <em>mode</em> from the run loop modes used to recieve
|
||||||
|
incoming messages.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>removeRunLoop:</sel>
|
<sel>removeRunLoop:</sel>
|
||||||
<arg type="NSRunLoop*">runloop</arg>
|
<arg type="NSRunLoop*">loop</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Removes <em>loop</em> from the run loops used to recieve
|
||||||
|
incoming messages.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSTimeInterval">
|
<method type="NSTimeInterval">
|
||||||
<sel>replyTimeout</sel>
|
<sel>replyTimeout</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the timeout interval used when waiting for a reply to
|
||||||
|
a request sent on the NSConnection.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSArray*">
|
<method type="NSArray*">
|
||||||
<sel>requestModes</sel>
|
<sel>requestModes</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns an array of all the run loop modes that the NSConnection
|
||||||
|
uses when waiting for an incoming request.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSTimeInterval">
|
<method type="NSTimeInterval">
|
||||||
<sel>requestTimeout</sel>
|
<sel>requestTimeout</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the timeout interval used when waiting for a send
|
||||||
|
operation to complete.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="id">
|
<method type="id">
|
||||||
<sel>rootObject</sel>
|
<sel>rootObject</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the object that is made available by this connection
|
||||||
|
or by its parent (the object is associated with the receive
|
||||||
|
port).
|
||||||
|
<br/>
|
||||||
|
Returns <code>nil</code> if no root object has been set.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSDistantObject*">
|
<method type="NSDistantObject*">
|
||||||
<sel>rootProxy</sel>
|
<sel>rootProxy</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the proxy for the root object of the remote NSConnection.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>runInNewThread</sel>
|
<sel>runInNewThread</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Removes the NSConnection from the current threads default
|
||||||
|
run loop, then creates a new thread and runs the NSConnection
|
||||||
|
in it.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSPort*">
|
<method type="NSPort*">
|
||||||
<sel>sendPort</sel>
|
<sel>sendPort</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns the port on which the NSConnection sends messages.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>setDelegate:</sel>
|
<sel>setDelegate:</sel>
|
||||||
<arg type="id">anObject</arg>
|
<arg type="id">delegate</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Sets the NSConnection's delegate (without retaining it).
|
||||||
|
<br/>
|
||||||
|
The delegate is able to control some of the NSConnection's
|
||||||
|
behavior by implementing methods in an informal protocol.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>setIndependentConversationQueueing:</sel>
|
<sel>setIndependentConversationQueueing:</sel>
|
||||||
<arg type="BOOL">flag</arg>
|
<arg type="BOOL">flag</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Sets whether or not the NSConnection should handle requests
|
||||||
|
arriving from the remote NSConnection atomically.
|
||||||
|
<br/>
|
||||||
|
By default, this is set to <code>NO</code> ... if set to
|
||||||
|
<code>YES</code> then any messages arriving while one message
|
||||||
|
is being dealt with, will be queued.
|
||||||
|
<br/>
|
||||||
|
NB. careful - use of this option can cause deadlocks.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>setReplyTimeout:</sel>
|
<sel>setReplyTimeout:</sel>
|
||||||
<arg type="NSTimeInterval">seconds</arg>
|
<arg type="NSTimeInterval">seconds</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Sets the time interval that the NSConnection will wait for a
|
||||||
|
reply to one of its requests before raising an
|
||||||
|
NSPortTimeoutException.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>setRequestTimeout:</sel>
|
<sel>setRequestTimeout:</sel>
|
||||||
<arg type="NSTimeInterval">seconds</arg>
|
<arg type="NSTimeInterval">seconds</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Sets the time interval that the NSConnection will to send
|
||||||
|
one of its requests before raising an NSPortTimeoutException.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="void">
|
<method type="void">
|
||||||
<sel>setRootObject:</sel>
|
<sel>setRootObject:</sel>
|
||||||
<arg type="id">anObject</arg>
|
<arg type="id">anObject</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
Sets the root object that is vended by the connection.
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSDictionary*">
|
<method type="NSDictionary*">
|
||||||
<sel>statistics</sel>
|
<sel>statistics</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
Returns an object containing various statistics for the
|
||||||
|
NSConnection.
|
||||||
|
<br/>
|
||||||
|
On GNUstep the dictionary contains -
|
||||||
|
<deflist>
|
||||||
|
<term>NSConnectionRepliesReceived</term>
|
||||||
|
<desc>
|
||||||
|
The number of messages replied to by the remote NSConnection
|
||||||
|
</desc>
|
||||||
|
<term>NSConnectionRepliesSent</term>
|
||||||
|
<desc>
|
||||||
|
The number of replies sent to the remote NSConnection
|
||||||
|
</desc>
|
||||||
|
<term>NSConnectionRequestsReceived</term>
|
||||||
|
<desc>
|
||||||
|
The number of messages recieved from the remote NSConnection
|
||||||
|
</desc>
|
||||||
|
<term>NSConnectionRequestsSent</term>
|
||||||
|
<desc>
|
||||||
|
The number of messages sent to the remote NSConnection
|
||||||
|
</desc>
|
||||||
|
<term>NSConnectionLocalCount</term>
|
||||||
|
<desc>
|
||||||
|
The number of local objects currently vended
|
||||||
|
</desc>
|
||||||
|
<term>NSConnectionProxyCount</term>
|
||||||
|
<desc>
|
||||||
|
The number of remote objects currently in use
|
||||||
|
</desc>
|
||||||
|
</deflist>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
|
|
||||||
|
|
||||||
<method type="BOOL">
|
<method type="BOOL">
|
||||||
<sel>authenticateComponents:</sel>
|
<sel>authenticateComponents:</sel>
|
||||||
<arg type="NSArray*">components</arg>
|
<arg type="NSMutableArray*">components</arg>
|
||||||
|
<sel>withData:</sel>
|
||||||
|
<arg type="NSData*">authentication</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
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
|
||||||
|
<em>authentication</em> data to check all the NSData objects
|
||||||
|
in the <em>components</em> array (ignoring NSPort objects),
|
||||||
|
and return <code>YES</code> if they are valid, <code>NO</code>
|
||||||
|
otherwise.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If the method returns <code>NO</code> then an
|
||||||
|
NSFailedAuthentication exception will be raised.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
In GNUstep the <em>components</em> array is mutable, allowing
|
||||||
|
you to replace the NSData objects with your own version.
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
|
<standards><GNUstep/><MacOS-X/><NotOpenStep/></standards>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSData*">
|
<method type="NSData*">
|
||||||
<sel>authenticationDataForComponents:</sel>
|
<sel>authenticationDataForComponents:</sel>
|
||||||
<arg type="NSArray*">components</arg>
|
<arg type="NSMutableArray*">components</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
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 <em>components</em> array (ignoring NSPort objects),
|
||||||
|
and return the authentication data that can be used by the
|
||||||
|
remote NSConnection.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
If the method returns <code>nil</code> then an
|
||||||
|
NSGenericException exception will be raised.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
In GNUstep the <em>components</em> array is mutable, allowing
|
||||||
|
you to replace the NSData objects with your own version.
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
|
<standards><GNUstep/><MacOS-X/><NotOpenStep/></standards>
|
||||||
</method>
|
</method>
|
||||||
<method type="BOOL">
|
<method type="BOOL" id="connection:shouldMakeNewConnection">
|
||||||
<sel>connection:</sel>
|
<sel>connection:</sel>
|
||||||
<arg type="NSConnection*">parentConnection</arg>
|
<arg type="NSConnection*">parentConnection</arg>
|
||||||
<sel>shouldMakeNewConnection:</sel>
|
<sel>shouldMakeNewConnection:</sel>
|
||||||
<arg type="NSConnection*">newConnnection</arg>
|
<arg type="NSConnection*">newConnnection</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
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.
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
|
<standards><GNUstep/><MacOS-X/><NotOpenStep/></standards>
|
||||||
</method>
|
</method>
|
||||||
<method type="BOOL">
|
<method type="BOOL">
|
||||||
<sel>makeNewConnection:</sel>
|
<sel>makeNewConnection:</sel>
|
||||||
<arg type="NSConnection*">newConnection</arg>
|
<arg type="NSConnection*">newConnection</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
This is the old equivalent of
|
||||||
|
<ref id="connection:shouldMakeNewConnection">
|
||||||
|
connection:shouldMakeNewConnection</ref>
|
||||||
|
and its use is now deprecated.
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
|
<standards><OpenStep/></standards>
|
||||||
</method>
|
</method>
|
||||||
</class>
|
</class>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
<dt><a href="http://www.gnustep.org/developers/whoiswho.html">Richard Frith-Macdonald</a>
|
<dt><a href="http://www.gnustep.org/developers/whoiswho.html">Richard Frith-Macdonald</a>
|
||||||
<dd>
|
<dd>
|
||||||
</dl>
|
</dl>
|
||||||
<p>Version: 0.1</p>
|
<p>Version: 0.2</p>
|
||||||
<p>Date: 28 February, 2000</p>
|
<p>Date: 4 July, 2000</p>
|
||||||
<h2><a name="cont-0">NSConnection</a></h2>
|
<h2><a name="cont-0">NSConnection</a></h2>
|
||||||
<h2><a name="NSConnection">NSConnection</a></h2>
|
<h2><a name="NSConnection">NSConnection</a></h2>
|
||||||
<p><b>Declared in:</b> Foundation/NSConnection.h</p>
|
<p><b>Declared in:</b> Foundation/NSConnection.h</p>
|
||||||
|
@ -21,235 +21,615 @@
|
||||||
</p>
|
</p>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
NSConnection objects are used to manage communications between
|
||||||
|
objects in different processes, in different machines, or in
|
||||||
|
different threads.
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="NSConnection.html#method-0">+allConnections</a>
|
<li><a href="NSConnection.html#method-0">+allConnections</a>
|
||||||
<li><a href="NSConnection.html#method-1">+connectionWithReceivePort:</a>
|
<li><a href="NSConnection.html#method-1">+connectionWithReceivePort:</a>
|
||||||
<li><a href="NSConnection.html#method-2">+connectionWithRegisteredName:</a>
|
<li><a href="NSConnection.html#method-2">+connectionWithRegisteredName:host:</a>
|
||||||
|
<li><a href="NSConnection.html#connectionWithRegisteredName:host:usingNameServer:">+connectionWithRegisteredName:host:usingNameServer:</a>
|
||||||
<li><a href="NSConnection.html#method-3">+currentConversation</a>
|
<li><a href="NSConnection.html#method-3">+currentConversation</a>
|
||||||
<li><a href="NSConnection.html#method-4">+defaultConnection</a>
|
<li><a href="NSConnection.html#method-4">+defaultConnection</a>
|
||||||
<li><a href="NSConnection.html#method-5">+rootProxyForConnectionWithRegisteredName:</a>
|
<li><a href="NSConnection.html#method-5">+newRegisteringAtName:withRootObject:</a>
|
||||||
<li><a href="NSConnection.html#method-6">-addRequestMode:</a>
|
<li><a href="NSConnection.html#method-7">+rootProxyForConnectionWithRegisteredName:host:</a>
|
||||||
<li><a href="NSConnection.html#method-7">-addRunLoop:</a>
|
<li><a href="NSConnection.html#rootProxyForConnectionWithRegisteredName:host:usingNameServer:">+rootProxyForConnectionWithRegisteredName:host:usingNameServer:</a>
|
||||||
<li><a href="NSConnection.html#method-34">-authenticateComponents:</a>
|
<li><a href="NSConnection.html#method-8">-addRequestMode:</a>
|
||||||
<li><a href="NSConnection.html#method-35">-authenticationDataForComponents:</a>
|
<li><a href="NSConnection.html#method-9">-addRunLoop:</a>
|
||||||
<li><a href="NSConnection.html#method-36">-connection:shouldMakeNewConnection:</a>
|
<li><a href="NSConnection.html#method-36">-authenticateComponents:withData:</a>
|
||||||
<li><a href="NSConnection.html#method-8">-delegate</a>
|
<li><a href="NSConnection.html#method-37">-authenticationDataForComponents:</a>
|
||||||
<li><a href="NSConnection.html#method-9">-enableMultipleThreads</a>
|
<li><a href="NSConnection.html#connection:shouldMakeNewConnection">-connection:shouldMakeNewConnection:</a>
|
||||||
<li><a href="NSConnection.html#method-10">-independentConversationQueueing</a>
|
<li><a href="NSConnection.html#method-10">-delegate</a>
|
||||||
<li><a href="NSConnection.html#method-11">-initWithReceivePort:</a>
|
<li><a href="NSConnection.html#method-11">-enableMultipleThreads</a>
|
||||||
<li><a href="NSConnection.html#method-12">-invalidate</a>
|
<li><a href="NSConnection.html#method-12">-independentConversationQueueing</a>
|
||||||
<li><a href="NSConnection.html#method-13">-isValid</a>
|
<li><a href="NSConnection.html#initWithReceivePort:sendPort:">-initWithReceivePort:sendPort:</a>
|
||||||
<li><a href="NSConnection.html#method-14">-localObjects</a>
|
<li><a href="NSConnection.html#method-13">-invalidate</a>
|
||||||
<li><a href="NSConnection.html#method-37">-makeNewConnection:</a>
|
<li><a href="NSConnection.html#method-14">-isValid</a>
|
||||||
<li><a href="NSConnection.html#method-15">-multipleThreadsEnabled</a>
|
<li><a href="NSConnection.html#method-15">-localObjects</a>
|
||||||
<li><a href="NSConnection.html#method-16">-receivePort</a>
|
<li><a href="NSConnection.html#method-38">-makeNewConnection:</a>
|
||||||
<li><a href="NSConnection.html#method-17">-registerName:</a>
|
<li><a href="NSConnection.html#method-16">-multipleThreadsEnabled</a>
|
||||||
<li><a href="NSConnection.html#method-18">-remoteObjects</a>
|
<li><a href="NSConnection.html#method-17">-receivePort</a>
|
||||||
<li><a href="NSConnection.html#method-19">-removeRequestMode:</a>
|
<li><a href="NSConnection.html#method-18">-registerName:</a>
|
||||||
<li><a href="NSConnection.html#method-20">-removeRunLoop:</a>
|
<li><a href="NSConnection.html#method-19">-registerName:withNameServer:</a>
|
||||||
<li><a href="NSConnection.html#method-21">-replyTimeout</a>
|
<li><a href="NSConnection.html#method-20">-remoteObjects</a>
|
||||||
<li><a href="NSConnection.html#method-22">-requestModes</a>
|
<li><a href="NSConnection.html#method-21">-removeRequestMode:</a>
|
||||||
<li><a href="NSConnection.html#method-23">-requestTimeout</a>
|
<li><a href="NSConnection.html#method-22">-removeRunLoop:</a>
|
||||||
<li><a href="NSConnection.html#method-24">-rootObject</a>
|
<li><a href="NSConnection.html#method-23">-replyTimeout</a>
|
||||||
<li><a href="NSConnection.html#method-25">-rootProxy</a>
|
<li><a href="NSConnection.html#method-24">-requestModes</a>
|
||||||
<li><a href="NSConnection.html#method-26">-runInNewThread</a>
|
<li><a href="NSConnection.html#method-25">-requestTimeout</a>
|
||||||
<li><a href="NSConnection.html#method-27">-sendPort</a>
|
<li><a href="NSConnection.html#method-26">-rootObject</a>
|
||||||
<li><a href="NSConnection.html#method-28">-setDelegate:</a>
|
<li><a href="NSConnection.html#method-27">-rootProxy</a>
|
||||||
<li><a href="NSConnection.html#method-29">-setIndependentConversationQueueing:</a>
|
<li><a href="NSConnection.html#method-28">-runInNewThread</a>
|
||||||
<li><a href="NSConnection.html#method-30">-setReplyTimeout:</a>
|
<li><a href="NSConnection.html#method-29">-sendPort</a>
|
||||||
<li><a href="NSConnection.html#method-31">-setRequestTimeout:</a>
|
<li><a href="NSConnection.html#method-30">-setDelegate:</a>
|
||||||
<li><a href="NSConnection.html#method-32">-setRootObject:</a>
|
<li><a href="NSConnection.html#method-31">-setIndependentConversationQueueing:</a>
|
||||||
<li><a href="NSConnection.html#method-33">-statistics</a>
|
<li><a href="NSConnection.html#method-32">-setReplyTimeout:</a>
|
||||||
|
<li><a href="NSConnection.html#method-33">-setRequestTimeout:</a>
|
||||||
|
<li><a href="NSConnection.html#method-34">-setRootObject:</a>
|
||||||
|
<li><a href="NSConnection.html#method-35">-statistics</a>
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allConnections</a></h2>
|
<h2><a name="method-0">allConnections</a></h2>
|
||||||
+ (NSArray*) <b>allConnections</b><br>
|
+ (NSArray*) <b>allConnections</b>;<br>
|
||||||
|
|
||||||
|
Returns an array containing all the NSConnection objects known to
|
||||||
|
the system. These connections will be valid at the time that the
|
||||||
|
array was created, but may be invalidated by other threads
|
||||||
|
before you get to examine the array.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">connectionWithReceivePort:</a></h2>
|
<h2><a name="method-1">connectionWithReceivePort:</a></h2>
|
||||||
+ (NSConnection*) <b>connectionWithReceivePort:</b> (NSPort*)receivePort<br>
|
+ (NSConnection*) <b>connectionWithReceivePort:</b> (NSPort*)receivePort;<br>
|
||||||
|
|
||||||
|
Returns a connection created using
|
||||||
|
<a href="#initWithReceivePort:sendPort:">
|
||||||
|
initWithReceivePort:sendPort:</a>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-2">connectionWithRegisteredName:host:</a></h2>
|
||||||
|
+ (NSConnection*) <b>connectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)hostName;<br>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
Returns an NSConnection object whose send port is that of the
|
||||||
|
NSConnection registered under <em>name</em> on the host
|
||||||
|
<em>hostName</em>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
This method calls
|
||||||
|
<a href="#connectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
connectionWithRegisteredName:host:usingNameServer:</a> using
|
||||||
|
the default system name server.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">connectionWithRegisteredName:</a></h2>
|
<h2><a name="connectionWithRegisteredName:host:usingNameServer:">connectionWithRegisteredName:host:usingNameServer:</a></h2>
|
||||||
+ (NSConnection*) <b>connectionWithRegisteredName:</b> (NSString*)name<br>
|
+ (NSConnection*) <b>connectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)host <b>usingNameServer:</b> (NSPortNameServer*)server;<br>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
Returns an NSConnection object whose send port is that of the
|
||||||
|
NSConnection registered under <em>name</em> on <em>host</em>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
The nameserver <em>server</em> is used to look up the send
|
||||||
|
port to be used for the connection.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
If <em>host</em> is <code>nil</code> 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.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
If no NSConnection can be found for <em>name</em> and
|
||||||
|
<em>host</em>host, the method returns <code>nil</code>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
The returned object has the default NSConnection of the
|
||||||
|
current thread as its parent (it has the same receive port
|
||||||
|
as the default connection).
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">currentConversation</a></h2>
|
<h2><a name="method-3">currentConversation</a></h2>
|
||||||
+ (id) <b>currentConversation</b><br>
|
+ (id) <b>currentConversation</b>;<br>
|
||||||
|
|
||||||
|
Not implemented
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">defaultConnection</a></h2>
|
<h2><a name="method-4">defaultConnection</a></h2>
|
||||||
+ (NSConnection*) <b>defaultConnection</b><br>
|
+ (NSConnection*) <b>defaultConnection</b>;<br>
|
||||||
|
|
||||||
|
Returns the default NSConnection for the current thread.
|
||||||
|
<br>
|
||||||
|
Creates a new instance if necessary.
|
||||||
|
<br>
|
||||||
|
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.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-5">newRegisteringAtName:withRootObject:</a></h2>
|
||||||
|
+ (NSConnection*) <b>newRegisteringAtName:</b> (NSString*)name <b>withRootObject:</b> (id)anObject;<br>
|
||||||
|
Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
||||||
|
|
||||||
|
This used to be the preferred mechanism for creating a GNUstep
|
||||||
|
server NSConnection ... it is now deprecated.
|
||||||
|
<br>
|
||||||
|
This is a convenience method for -
|
||||||
|
<a name="label-6">example</a>
|
||||||
|
<pre>
|
||||||
|
|
||||||
|
NSConnection *conn;
|
||||||
|
|
||||||
|
conn = [[NSConnection alloc] initWithReceivePort: [NSPort port]
|
||||||
|
sendPort: nil];
|
||||||
|
[conn setRootObject: anObject];
|
||||||
|
if ([conn registerName: name] == NO)
|
||||||
|
{
|
||||||
|
DESTROY(conn);
|
||||||
|
}
|
||||||
|
return conn;
|
||||||
|
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">rootProxyForConnectionWithRegisteredName:</a></h2>
|
<h2><a name="method-7">rootProxyForConnectionWithRegisteredName:host:</a></h2>
|
||||||
+ (NSDistantObject*) <b>rootProxyForConnectionWithRegisteredName:</b> (NSString*)name<br>
|
+ (NSDistantObject*) <b>rootProxyForConnectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)host;<br>
|
||||||
|
|
||||||
|
This method calls <a href="#rootProxyForConnectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
rootProxyForConnectionWithRegisteredName:host:usingNameServer:</a>
|
||||||
|
to return a proxy for a root object on the remote connection with
|
||||||
|
the send port registered under <em>name</em> on <em>host</em>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="rootProxyForConnectionWithRegisteredName:host:usingNameServer:">rootProxyForConnectionWithRegisteredName:host:usingNameServer:</a></h2>
|
||||||
|
+ (NSDistantObject*) <b>rootProxyForConnectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)host <b>usingNameServer:</b> (NSPortNameServer*)server;<br>
|
||||||
|
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||||
|
|
||||||
|
This method calls
|
||||||
|
<a href="NSConnection.html#connectionWithRegisteredName:host:usingNameServer:">
|
||||||
|
connectionWithRegisteredName:host:usingNameServer:</a>
|
||||||
|
to get a connection, then sends it a
|
||||||
|
<a href="#rootproxy">rootProxy</a> message to get a proxy for
|
||||||
|
the root object being vended by the remote connection.
|
||||||
|
Returns the proxy or <code>nil</code> if it couldn't find
|
||||||
|
a connection or if the root object for the connection has
|
||||||
|
not been set.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-8">addRequestMode:</a></h2>
|
||||||
|
- (void) <b>addRequestMode:</b> (NSString*)mode;<br>
|
||||||
|
|
||||||
|
Adds <em>mode</em> to the run loop modes that the NSConnection
|
||||||
|
will listen to for incoming messages.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-9">addRunLoop:</a></h2>
|
||||||
|
- (void) <b>addRunLoop:</b> (NSRunLoop*)loop;<br>
|
||||||
|
|
||||||
|
Adds <em>loop</em> to the set of run loops that the NSConnection
|
||||||
|
will listen to for incoming messages.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-10">delegate</a></h2>
|
||||||
|
- (id) <b>delegate</b>;<br>
|
||||||
|
|
||||||
|
Returns the delegate of the NSConnection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-11">enableMultipleThreads</a></h2>
|
||||||
|
- (void) <b>enableMultipleThreads</b>;<br>
|
||||||
|
|
||||||
|
Sets the NSConnection configuration so that multiple threads may
|
||||||
|
use the connection to send requests to the remote connection.
|
||||||
|
<br>
|
||||||
|
This option is inherited by child connections.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-12">independentConversationQueueing</a></h2>
|
||||||
|
- (BOOL) <b>independentConversationQueueing</b>;<br>
|
||||||
|
|
||||||
|
Returns <code>YES</code> if the NSConnection is configured to
|
||||||
|
handle remote messages atomically, <code>NO</code> otherwise.
|
||||||
|
<br>
|
||||||
|
This option is inherited by child connections.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="initWithReceivePort:sendPort:">initWithReceivePort:sendPort:</a></h2>
|
||||||
|
<b>This is the designated initialiser</b><br>
|
||||||
|
- (id) <b>initWithReceivePort:</b> (NSPort*)recv <b>sendPort:</b> (NSPort*)send;<br>
|
||||||
|
|
||||||
|
Initialises an NSConnection with <em>recv</em> and <em>send</em>.
|
||||||
|
<br>
|
||||||
|
Behavior varies with the port values as follows -
|
||||||
|
<dl>
|
||||||
|
<dt><em>recv</em> is <code>nil</code>
|
||||||
|
<dd>
|
||||||
|
The NSConnection is released and the method returns
|
||||||
|
<code>nil</code>.
|
||||||
|
|
||||||
|
<dt><em>send</em> is <code>nil</code>
|
||||||
|
<dd>
|
||||||
|
The NSConnection uses <em>recv</em> as the send port as
|
||||||
|
well as the receive port.
|
||||||
|
|
||||||
|
<dt><em>send</em> is the same as <em>recv</em>
|
||||||
|
<dd>
|
||||||
|
The NSConnection is usable only for vending objects.
|
||||||
|
|
||||||
|
<dt>A connection with the same ports exists
|
||||||
|
<dd>
|
||||||
|
The new connection is released and the old connection
|
||||||
|
is retained and returned.
|
||||||
|
|
||||||
|
<dt>A connection with the same ports (swapped) exists
|
||||||
|
<dd>
|
||||||
|
The new connection is initialised as normal, and will
|
||||||
|
communicate with the old connection.
|
||||||
|
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
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.
|
||||||
|
<br>
|
||||||
|
NSConnectionDidInitializeNotification is posted once a new
|
||||||
|
connection is initialised.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">addRequestMode:</a></h2>
|
<h2><a name="method-13">invalidate</a></h2>
|
||||||
- (void) <b>addRequestMode:</b> (NSString*)mode<br>
|
- (void) <b>invalidate</b>;<br>
|
||||||
|
|
||||||
|
Marks the receiving NSConnection as invalid.
|
||||||
|
<br>
|
||||||
|
Removes the NSConnections ports from any run loops.
|
||||||
|
<br>
|
||||||
|
Posts an NSConnectionDidDieNotification.
|
||||||
|
<br>
|
||||||
|
Invalidates all remote objects and local proxies.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-14">isValid</a></h2>
|
||||||
|
- (BOOL) <b>isValid</b>;<br>
|
||||||
|
|
||||||
|
Returns <code>YES</code> if the connection is invalid,
|
||||||
|
<code>NO</code> otherwise.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-15">localObjects</a></h2>
|
||||||
|
- (NSArray*) <b>localObjects</b>;<br>
|
||||||
|
|
||||||
|
Returns an array of all the local proxies to objects that
|
||||||
|
are retained by the remote connection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-16">multipleThreadsEnabled</a></h2>
|
||||||
|
- (BOOL) <b>multipleThreadsEnabled</b>;<br>
|
||||||
|
|
||||||
|
Returns <code>YES</code> if the connection permits
|
||||||
|
multiple threads to use it to send requests,
|
||||||
|
<code>NO</code> otherwise.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-17">receivePort</a></h2>
|
||||||
|
- (NSPort*) <b>receivePort</b>;<br>
|
||||||
|
|
||||||
|
Returns the NSPort object on which incoming messages are
|
||||||
|
recieved.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-18">registerName:</a></h2>
|
||||||
|
- (BOOL) <b>registerName:</b> (NSString*)name;<br>
|
||||||
|
|
||||||
|
Simply invokes <a href="#registerName:usingNameServer:">
|
||||||
|
registerName:usingNameServer:</a> passing it the default
|
||||||
|
system nameserver.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-19">registerName:withNameServer:</a></h2>
|
||||||
|
- (BOOL) <b>registerName:</b> (NSString*)name <b>withNameServer:</b> (NSPortNameServer*)server;<br>
|
||||||
|
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||||
|
|
||||||
|
Registers the recieve port of the NSConnection as <em>name</em> and
|
||||||
|
unregisters the previous name (if any).
|
||||||
|
<br>
|
||||||
|
Returns <code>YES</code> on success, <code>NO</code> on failure.
|
||||||
|
<br>
|
||||||
|
On failure, the connection remains registered under the
|
||||||
|
previous name.
|
||||||
|
<br>
|
||||||
|
Supply <code>nil</code> as <em>name</em> to unregister the
|
||||||
|
NSConnection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-20">remoteObjects</a></h2>
|
||||||
|
- (NSArray*) <b>remoteObjects</b>;<br>
|
||||||
|
|
||||||
|
Returns an array of proxies to all the remote objects known to
|
||||||
|
the NSConnection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-21">removeRequestMode:</a></h2>
|
||||||
|
- (void) <b>removeRequestMode:</b> (NSString*)mode;<br>
|
||||||
|
|
||||||
|
Removes <em>mode</em> from the run loop modes used to recieve
|
||||||
|
incoming messages.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-22">removeRunLoop:</a></h2>
|
||||||
|
- (void) <b>removeRunLoop:</b> (NSRunLoop*)loop;<br>
|
||||||
|
|
||||||
|
Removes <em>loop</em> from the run loops used to recieve
|
||||||
|
incoming messages.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-23">replyTimeout</a></h2>
|
||||||
|
- (NSTimeInterval) <b>replyTimeout</b>;<br>
|
||||||
|
|
||||||
|
Returns the timeout interval used when waiting for a reply to
|
||||||
|
a request sent on the NSConnection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-24">requestModes</a></h2>
|
||||||
|
- (NSArray*) <b>requestModes</b>;<br>
|
||||||
|
|
||||||
|
Returns an array of all the run loop modes that the NSConnection
|
||||||
|
uses when waiting for an incoming request.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-25">requestTimeout</a></h2>
|
||||||
|
- (NSTimeInterval) <b>requestTimeout</b>;<br>
|
||||||
|
|
||||||
|
Returns the timeout interval used when waiting for a send
|
||||||
|
operation to complete.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-26">rootObject</a></h2>
|
||||||
|
- (id) <b>rootObject</b>;<br>
|
||||||
|
|
||||||
|
Returns the object that is made available by this connection
|
||||||
|
or by its parent (the object is associated with the receive
|
||||||
|
port).
|
||||||
|
<br>
|
||||||
|
Returns <code>nil</code> if no root object has been set.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-27">rootProxy</a></h2>
|
||||||
|
- (NSDistantObject*) <b>rootProxy</b>;<br>
|
||||||
|
|
||||||
|
Returns the proxy for the root object of the remote NSConnection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-28">runInNewThread</a></h2>
|
||||||
|
- (void) <b>runInNewThread</b>;<br>
|
||||||
|
|
||||||
|
Removes the NSConnection from the current threads default
|
||||||
|
run loop, then creates a new thread and runs the NSConnection
|
||||||
|
in it.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-29">sendPort</a></h2>
|
||||||
|
- (NSPort*) <b>sendPort</b>;<br>
|
||||||
|
|
||||||
|
Returns the port on which the NSConnection sends messages.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-30">setDelegate:</a></h2>
|
||||||
|
- (void) <b>setDelegate:</b> (id)delegate;<br>
|
||||||
|
|
||||||
|
Sets the NSConnection's delegate (without retaining it).
|
||||||
|
<br>
|
||||||
|
The delegate is able to control some of the NSConnection's
|
||||||
|
behavior by implementing methods in an informal protocol.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-31">setIndependentConversationQueueing:</a></h2>
|
||||||
|
- (void) <b>setIndependentConversationQueueing:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
Sets whether or not the NSConnection should handle requests
|
||||||
|
arriving from the remote NSConnection atomically.
|
||||||
|
<br>
|
||||||
|
By default, this is set to <code>NO</code> ... if set to
|
||||||
|
<code>YES</code> then any messages arriving while one message
|
||||||
|
is being dealt with, will be queued.
|
||||||
|
<br>
|
||||||
|
NB. careful - use of this option can cause deadlocks.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-32">setReplyTimeout:</a></h2>
|
||||||
|
- (void) <b>setReplyTimeout:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
Sets the time interval that the NSConnection will wait for a
|
||||||
|
reply to one of its requests before raising an
|
||||||
|
NSPortTimeoutException.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-33">setRequestTimeout:</a></h2>
|
||||||
|
- (void) <b>setRequestTimeout:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
Sets the time interval that the NSConnection will to send
|
||||||
|
one of its requests before raising an NSPortTimeoutException.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-34">setRootObject:</a></h2>
|
||||||
|
- (void) <b>setRootObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
Sets the root object that is vended by the connection.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<h2><a name="method-35">statistics</a></h2>
|
||||||
|
- (NSDictionary*) <b>statistics</b>;<br>
|
||||||
|
|
||||||
|
Returns an object containing various statistics for the
|
||||||
|
NSConnection.
|
||||||
|
<br>
|
||||||
|
On GNUstep the dictionary contains -
|
||||||
|
<dl>
|
||||||
|
<dt>NSConnectionRepliesReceived
|
||||||
|
<dd>
|
||||||
|
The number of messages replied to by the remote NSConnection
|
||||||
|
|
||||||
|
<dt>NSConnectionRepliesSent
|
||||||
|
<dd>
|
||||||
|
The number of replies sent to the remote NSConnection
|
||||||
|
|
||||||
|
<dt>NSConnectionRequestsReceived
|
||||||
|
<dd>
|
||||||
|
The number of messages recieved from the remote NSConnection
|
||||||
|
|
||||||
|
<dt>NSConnectionRequestsSent
|
||||||
|
<dd>
|
||||||
|
The number of messages sent to the remote NSConnection
|
||||||
|
|
||||||
|
<dt>NSConnectionLocalCount
|
||||||
|
<dd>
|
||||||
|
The number of local objects currently vended
|
||||||
|
|
||||||
|
<dt>NSConnectionProxyCount
|
||||||
|
<dd>
|
||||||
|
The number of remote objects currently in use
|
||||||
|
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">addRunLoop:</a></h2>
|
<h2><a name="method-36">authenticateComponents:withData:</a></h2>
|
||||||
- (void) <b>addRunLoop:</b> (NSRunLoop*)runloop<br>
|
- (BOOL) <b>authenticateComponents:</b> (NSMutableArray*)components <b>withData:</b> (NSData*)authentication;<br>
|
||||||
|
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
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
|
||||||
|
<em>authentication</em> data to check all the NSData objects
|
||||||
|
in the <em>components</em> array (ignoring NSPort objects),
|
||||||
|
and return <code>YES</code> if they are valid, <code>NO</code>
|
||||||
|
otherwise.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
If the method returns <code>NO</code> then an
|
||||||
|
NSFailedAuthentication exception will be raised.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
In GNUstep the <em>components</em> array is mutable, allowing
|
||||||
|
you to replace the NSData objects with your own version.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">delegate</a></h2>
|
<h2><a name="method-37">authenticationDataForComponents:</a></h2>
|
||||||
- (id) <b>delegate</b><br>
|
- (NSData*) <b>authenticationDataForComponents:</b> (NSMutableArray*)components;<br>
|
||||||
|
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
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 <em>components</em> array (ignoring NSPort objects),
|
||||||
|
and return the authentication data that can be used by the
|
||||||
|
remote NSConnection.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
If the method returns <code>nil</code> then an
|
||||||
|
NSGenericException exception will be raised.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
In GNUstep the <em>components</em> array is mutable, allowing
|
||||||
|
you to replace the NSData objects with your own version.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">enableMultipleThreads</a></h2>
|
<h2><a name="connection:shouldMakeNewConnection">connection:shouldMakeNewConnection:</a></h2>
|
||||||
- (void) <b>enableMultipleThreads</b><br>
|
- (BOOL) <b>connection:</b> (NSConnection*)parentConnection <b>shouldMakeNewConnection:</b> (NSConnection*)newConnnection;<br>
|
||||||
|
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
|
be implemented by the delegate of an NSConnection object.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
|
||||||
|
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.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">independentConversationQueueing</a></h2>
|
<h2><a name="method-38">makeNewConnection:</a></h2>
|
||||||
- (BOOL) <b>independentConversationQueueing</b><br>
|
- (BOOL) <b>makeNewConnection:</b> (NSConnection*)newConnection;<br>
|
||||||
|
Standards: OpenStep<br>
|
||||||
|
|
||||||
|
<p>
|
||||||
<hr>
|
|
||||||
<h2><a name="method-11">initWithReceivePort:</a></h2>
|
|
||||||
- (id) <b>initWithReceivePort:</b> (NSPort*)receivePort<br>
|
|
||||||
|
|
||||||
|
This is not an NSConnection method, but is a method that may
|
||||||
<hr>
|
be implemented by the delegate of an NSConnection object.
|
||||||
<h2><a name="method-12">invalidate</a></h2>
|
</p>
|
||||||
- (void) <b>invalidate</b><br>
|
|
||||||
|
|
||||||
|
<p>
|
||||||
<hr>
|
|
||||||
<h2><a name="method-13">isValid</a></h2>
|
|
||||||
- (BOOL) <b>isValid</b><br>
|
|
||||||
|
|
||||||
|
This is the old equivalent of
|
||||||
<hr>
|
<a href="NSConnection.html#connection:shouldMakeNewConnection">
|
||||||
<h2><a name="method-14">localObjects</a></h2>
|
connection:shouldMakeNewConnection</a>
|
||||||
- (NSArray*) <b>localObjects</b><br>
|
and its use is now deprecated.
|
||||||
|
</p>
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-15">multipleThreadsEnabled</a></h2>
|
|
||||||
- (BOOL) <b>multipleThreadsEnabled</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-16">receivePort</a></h2>
|
|
||||||
- (NSPort*) <b>receivePort</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-17">registerName:</a></h2>
|
|
||||||
- (BOOL) <b>registerName:</b> (NSString*)name<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-18">remoteObjects</a></h2>
|
|
||||||
- (NSArray*) <b>remoteObjects</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-19">removeRequestMode:</a></h2>
|
|
||||||
- (void) <b>removeRequestMode:</b> (NSString*)mode<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-20">removeRunLoop:</a></h2>
|
|
||||||
- (void) <b>removeRunLoop:</b> (NSRunLoop*)runloop<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-21">replyTimeout</a></h2>
|
|
||||||
- (NSTimeInterval) <b>replyTimeout</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-22">requestModes</a></h2>
|
|
||||||
- (NSArray*) <b>requestModes</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-23">requestTimeout</a></h2>
|
|
||||||
- (NSTimeInterval) <b>requestTimeout</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-24">rootObject</a></h2>
|
|
||||||
- (id) <b>rootObject</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-25">rootProxy</a></h2>
|
|
||||||
- (NSDistantObject*) <b>rootProxy</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-26">runInNewThread</a></h2>
|
|
||||||
- (void) <b>runInNewThread</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-27">sendPort</a></h2>
|
|
||||||
- (NSPort*) <b>sendPort</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-28">setDelegate:</a></h2>
|
|
||||||
- (void) <b>setDelegate:</b> (id)anObject<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-29">setIndependentConversationQueueing:</a></h2>
|
|
||||||
- (void) <b>setIndependentConversationQueueing:</b> (BOOL)flag<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-30">setReplyTimeout:</a></h2>
|
|
||||||
- (void) <b>setReplyTimeout:</b> (NSTimeInterval)seconds<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-31">setRequestTimeout:</a></h2>
|
|
||||||
- (void) <b>setRequestTimeout:</b> (NSTimeInterval)seconds<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-32">setRootObject:</a></h2>
|
|
||||||
- (void) <b>setRootObject:</b> (id)anObject<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-33">statistics</a></h2>
|
|
||||||
- (NSDictionary*) <b>statistics</b><br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-34">authenticateComponents:</a></h2>
|
|
||||||
- (BOOL) <b>authenticateComponents:</b> (NSArray*)components<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-35">authenticationDataForComponents:</a></h2>
|
|
||||||
- (NSData*) <b>authenticationDataForComponents:</b> (NSArray*)components<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-36">connection:shouldMakeNewConnection:</a></h2>
|
|
||||||
- (BOOL) <b>connection:</b> (NSConnection*)parentConnection <b>shouldMakeNewConnection:</b> (NSConnection*)newConnnection<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<h2><a name="method-37">makeNewConnection:</a></h2>
|
|
||||||
- (BOOL) <b>makeNewConnection:</b> (NSConnection*)newConnection<br>
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSCountedSet" prev="NSConnection.html" next="NSDate.html" up="Base.html">
|
<gsdoc base="NSCountedSet" prev="NSConnection" next="NSDate" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSCountedSet</title>
|
<title>NSCountedSet</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">addObject:</a></h2>
|
<h2><a name="method-0">addObject:</a></h2>
|
||||||
- (void) <b>addObject:</b> (id)anObject<br>
|
- (void) <b>addObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
Adds an object to the set. If the set already contains an object
|
Adds an object to the set. If the set already contains an object
|
||||||
equal to the specified object (as determined by the [-isEqual:]
|
equal to the specified object (as determined by the [-isEqual:]
|
||||||
|
@ -59,19 +59,19 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">allObjects</a></h2>
|
<h2><a name="method-1">allObjects</a></h2>
|
||||||
- (NSArray*) <b>allObjects</b><br>
|
- (NSArray*) <b>allObjects</b>;<br>
|
||||||
|
|
||||||
Returns an array containing all the objects stored in the set.
|
Returns an array containing all the objects stored in the set.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">count</a></h2>
|
<h2><a name="method-2">count</a></h2>
|
||||||
- (unsigned int) <b>count</b><br>
|
- (unsigned int) <b>count</b>;<br>
|
||||||
|
|
||||||
Returns the number of objects stored in the set.
|
Returns the number of objects stored in the set.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">countForObject:</a></h2>
|
<h2><a name="method-3">countForObject:</a></h2>
|
||||||
- (unsigned int) <b>countForObject:</b> (id)anObject<br>
|
- (unsigned int) <b>countForObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
Returns the number of times that an object that is equal to the
|
Returns the number of times that an object that is equal to the
|
||||||
specified object (as determined byt the [-isEqual:] method) has
|
specified object (as determined byt the [-isEqual:] method) has
|
||||||
|
@ -79,7 +79,7 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithArray:</a></h2>
|
<h2><a name="method-4">initWithArray:</a></h2>
|
||||||
- (id) <b>initWithArray:</b> (NSArray*)anArray<br>
|
- (id) <b>initWithArray:</b> (NSArray*)anArray;<br>
|
||||||
|
|
||||||
Initialises a newly allocated set by adding all the objects
|
Initialises a newly allocated set by adding all the objects
|
||||||
in the supplied array to the set. Each object is added to
|
in the supplied array to the set. Each object is added to
|
||||||
|
@ -87,28 +87,28 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">initWithCapacity:</a></h2>
|
<h2><a name="method-5">initWithCapacity:</a></h2>
|
||||||
- (id) <b>initWithCapacity:</b> (unsigned int)numItems<br>
|
- (id) <b>initWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
Initialises a newly allocated set to contain no objects but
|
Initialises a newly allocated set to contain no objects but
|
||||||
to have space available to hold the specified number of items.
|
to have space available to hold the specified number of items.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">initWithSet:</a></h2>
|
<h2><a name="method-6">initWithSet:</a></h2>
|
||||||
- (id) <b>initWithSet:</b> (NSSet*)aSet<br>
|
- (id) <b>initWithSet:</b> (NSSet*)aSet;<br>
|
||||||
|
|
||||||
Initialises a newly allocated set by adding all the objects
|
Initialises a newly allocated set by adding all the objects
|
||||||
in the supplied set.
|
in the supplied set.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">objectEnumerator</a></h2>
|
<h2><a name="method-7">objectEnumerator</a></h2>
|
||||||
- (NSEnumerator*) <b>objectEnumerator</b><br>
|
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||||
|
|
||||||
Returns an NSEnumerator object able to step through all the
|
Returns an NSEnumerator object able to step through all the
|
||||||
objects in the set.
|
objects in the set.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">purge:</a></h2>
|
<h2><a name="method-8">purge:</a></h2>
|
||||||
- (void) <b>purge:</b> (int)count<br>
|
- (void) <b>purge:</b> (int)count;<br>
|
||||||
Standards: NotOpenStep NotMacOS-X<br>
|
Standards: NotOpenStep NotMacOS-X<br>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -127,7 +127,7 @@ Standards: NotOpenStep NotMacOS-X<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">removeObject:</a></h2>
|
<h2><a name="method-9">removeObject:</a></h2>
|
||||||
- (void) <b>removeObject:</b> (id)anObject<br>
|
- (void) <b>removeObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
Decrements the count of the number of times that the specified
|
Decrements the count of the number of times that the specified
|
||||||
object (or an object qequal to it as determined by the
|
object (or an object qequal to it as determined by the
|
||||||
|
@ -136,7 +136,7 @@ Standards: NotOpenStep NotMacOS-X<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">unique:</a></h2>
|
<h2><a name="method-10">unique:</a></h2>
|
||||||
- (id) <b>unique:</b> (id)anObject<br>
|
- (id) <b>unique:</b> (id)anObject;<br>
|
||||||
Standards: NotOpenStep NotMacOS-X<br>
|
Standards: NotOpenStep NotMacOS-X<br>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDate" prev="NSCountedSet.html" next="NSDateFormatter.html" up="Base.html">
|
<gsdoc base="NSDate" prev="NSCountedSet" next="NSDateFormatter" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDate</title>
|
<title>NSDate</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -52,132 +52,132 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">timeIntervalSinceReferenceDate</a></h2>
|
<h2><a name="method-0">timeIntervalSinceReferenceDate</a></h2>
|
||||||
+ (NSTimeInterval) <b>timeIntervalSinceReferenceDate</b><br>
|
+ (NSTimeInterval) <b>timeIntervalSinceReferenceDate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">date</a></h2>
|
<h2><a name="method-1">date</a></h2>
|
||||||
+ (id) <b>date</b><br>
|
+ (id) <b>date</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">dateWithString:</a></h2>
|
<h2><a name="method-2">dateWithString:</a></h2>
|
||||||
+ (id) <b>dateWithString:</b> (NSString*)aString<br>
|
+ (id) <b>dateWithString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">dateWithTimeIntervalSinceNow:</a></h2>
|
<h2><a name="method-3">dateWithTimeIntervalSinceNow:</a></h2>
|
||||||
+ (id) <b>dateWithTimeIntervalSinceNow:</b> (NSTimeInterval)seconds<br>
|
+ (id) <b>dateWithTimeIntervalSinceNow:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">dateWithTimeIntervalSince1970:</a></h2>
|
<h2><a name="method-4">dateWithTimeIntervalSince1970:</a></h2>
|
||||||
+ (id) <b>dateWithTimeIntervalSince1970:</b> (NSTimeInterval)seconds<br>
|
+ (id) <b>dateWithTimeIntervalSince1970:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">dateWithTimeIntervalSinceReferenceDate:</a></h2>
|
<h2><a name="method-5">dateWithTimeIntervalSinceReferenceDate:</a></h2>
|
||||||
+ (id) <b>dateWithTimeIntervalSinceReferenceDate:</b> (NSTimeInterval)seconds<br>
|
+ (id) <b>dateWithTimeIntervalSinceReferenceDate:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">distantFuture</a></h2>
|
<h2><a name="method-6">distantFuture</a></h2>
|
||||||
+ (id) <b>distantFuture</b><br>
|
+ (id) <b>distantFuture</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">distantPast</a></h2>
|
<h2><a name="method-7">distantPast</a></h2>
|
||||||
+ (id) <b>distantPast</b><br>
|
+ (id) <b>distantPast</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">addTimeInterval:</a></h2>
|
<h2><a name="method-8">addTimeInterval:</a></h2>
|
||||||
- (id) <b>addTimeInterval:</b> (NSTimeInterval)seconds<br>
|
- (id) <b>addTimeInterval:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">compare:</a></h2>
|
<h2><a name="method-9">compare:</a></h2>
|
||||||
- (NSComparisonResult) <b>compare:</b> (NSDate*)anotherDate<br>
|
- (NSComparisonResult) <b>compare:</b> (NSDate*)anotherDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">dateWithCalendarFormat:</a></h2>
|
<h2><a name="method-10">dateWithCalendarFormat:</a></h2>
|
||||||
- (NSCalendarDate*) <b>dateWithCalendarFormat:</b> (NSString*)formatString<br>
|
- (NSCalendarDate*) <b>dateWithCalendarFormat:</b> (NSString*)formatString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">description</a></h2>
|
<h2><a name="method-11">description</a></h2>
|
||||||
- (NSString*) <b>description</b><br>
|
- (NSString*) <b>description</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">descriptionWithCalendarFormat:timeZone:locale:</a></h2>
|
<h2><a name="method-12">descriptionWithCalendarFormat:timeZone:locale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)formatString <b>timeZone:</b> (NSTimeZone*)aTimeZone <b>locale:</b> (NSDictionary*)localeDictionary<br>
|
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)formatString <b>timeZone:</b> (NSTimeZone*)aTimeZone <b>locale:</b> (NSDictionary*)localeDictionary;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)localeDictionary<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)localeDictionary;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">earlierDate:</a></h2>
|
<h2><a name="method-14">earlierDate:</a></h2>
|
||||||
- (NSDate*) <b>earlierDate:</b> (NSDate*)anotherDate<br>
|
- (NSDate*) <b>earlierDate:</b> (NSDate*)anotherDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">init</a></h2>
|
<h2><a name="method-15">init</a></h2>
|
||||||
- (id) <b>init</b><br>
|
- (id) <b>init</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">initWithString:</a></h2>
|
<h2><a name="method-16">initWithString:</a></h2>
|
||||||
- (id) <b>initWithString:</b> (NSString*)description<br>
|
- (id) <b>initWithString:</b> (NSString*)description;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">initWithTimeInterval:sinceDate:</a></h2>
|
<h2><a name="method-17">initWithTimeInterval:sinceDate:</a></h2>
|
||||||
- (id) <b>initWithTimeInterval:</b> (NSTimeInterval)seconds <b>sinceDate:</b> (NSDate*)anotherDate<br>
|
- (id) <b>initWithTimeInterval:</b> (NSTimeInterval)seconds <b>sinceDate:</b> (NSDate*)anotherDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">initWithTimeIntervalSinceNow:</a></h2>
|
<h2><a name="method-18">initWithTimeIntervalSinceNow:</a></h2>
|
||||||
- (id) <b>initWithTimeIntervalSinceNow:</b> (NSTimeInterval)seconds<br>
|
- (id) <b>initWithTimeIntervalSinceNow:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">initWithTimeIntervalSinceReferenceDate:</a></h2>
|
<h2><a name="method-19">initWithTimeIntervalSinceReferenceDate:</a></h2>
|
||||||
- (id) <b>initWithTimeIntervalSinceReferenceDate:</b> (NSTimeInterval)seconds<br>
|
- (id) <b>initWithTimeIntervalSinceReferenceDate:</b> (NSTimeInterval)seconds;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">isEqualToDate:</a></h2>
|
<h2><a name="method-20">isEqualToDate:</a></h2>
|
||||||
- (BOOL) <b>isEqualToDate:</b> (NSDate*)anotherDate<br>
|
- (BOOL) <b>isEqualToDate:</b> (NSDate*)anotherDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">laterDate:</a></h2>
|
<h2><a name="method-21">laterDate:</a></h2>
|
||||||
- (NSDate*) <b>laterDate:</b> (NSDate*)anotherDate<br>
|
- (NSDate*) <b>laterDate:</b> (NSDate*)anotherDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">timeIntervalSinceDate:</a></h2>
|
<h2><a name="method-22">timeIntervalSinceDate:</a></h2>
|
||||||
- (NSTimeInterval) <b>timeIntervalSinceDate:</b> (NSDate*)anotherDate<br>
|
- (NSTimeInterval) <b>timeIntervalSinceDate:</b> (NSDate*)anotherDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">timeIntervalSince1970</a></h2>
|
<h2><a name="method-23">timeIntervalSince1970</a></h2>
|
||||||
- (NSTimeInterval) <b>timeIntervalSince1970</b><br>
|
- (NSTimeInterval) <b>timeIntervalSince1970</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">timeIntervalSinceNow</a></h2>
|
<h2><a name="method-24">timeIntervalSinceNow</a></h2>
|
||||||
- (NSTimeInterval) <b>timeIntervalSinceNow</b><br>
|
- (NSTimeInterval) <b>timeIntervalSinceNow</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">timeIntervalSinceReferenceDate</a></h2>
|
<h2><a name="method-25">timeIntervalSinceReferenceDate</a></h2>
|
||||||
- (NSTimeInterval) <b>timeIntervalSinceReferenceDate</b><br>
|
- (NSTimeInterval) <b>timeIntervalSinceReferenceDate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDateFormatter" prev="NSDate.html" next="NSDecimalNumber.html" up="Base.html">
|
<gsdoc base="NSDateFormatter" prev="NSDate" next="NSDecimalNumber" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDateFormatter</title>
|
<title>NSDateFormatter</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -29,17 +29,17 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allowsNaturalLanguage</a></h2>
|
<h2><a name="method-0">allowsNaturalLanguage</a></h2>
|
||||||
- (BOOL) <b>allowsNaturalLanguage</b><br>
|
- (BOOL) <b>allowsNaturalLanguage</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">dateFormat</a></h2>
|
<h2><a name="method-1">dateFormat</a></h2>
|
||||||
- (NSString*) <b>dateFormat</b><br>
|
- (NSString*) <b>dateFormat</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">initWithDateFormat:allowNaturalLanguage:</a></h2>
|
<h2><a name="method-2">initWithDateFormat:allowNaturalLanguage:</a></h2>
|
||||||
- (id) <b>initWithDateFormat:</b> (NSString*)format <b>allowNaturalLanguage:</b> (BOOL)flag<br>
|
- (id) <b>initWithDateFormat:</b> (NSString*)format <b>allowNaturalLanguage:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDecimalNumber" prev="NSDateFormatter.html" next="NSDecimalNumberHandler.html" up="Base.html">
|
<gsdoc base="NSDecimalNumber" prev="NSDateFormatter" next="NSDecimalNumberHandler" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDecimalNumber</title>
|
<title>NSDecimalNumber</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -57,167 +57,167 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">decimalNumberWithDecimal:</a></h2>
|
<h2><a name="method-0">decimalNumberWithDecimal:</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>decimalNumberWithDecimal:</b> (NSDecimal)decimal<br>
|
+ (NSDecimalNumber*) <b>decimalNumberWithDecimal:</b> (NSDecimal)decimal;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">decimalNumberWithMantissa:exponent:isNegative:</a></h2>
|
<h2><a name="method-1">decimalNumberWithMantissa:exponent:isNegative:</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>decimalNumberWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative<br>
|
+ (NSDecimalNumber*) <b>decimalNumberWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">decimalNumberWithString:</a></h2>
|
<h2><a name="method-2">decimalNumberWithString:</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>decimalNumberWithString:</b> (NSString*)numericString<br>
|
+ (NSDecimalNumber*) <b>decimalNumberWithString:</b> (NSString*)numericString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">decimalNumberWithString:</a></h2>
|
<h2><a name="method-3">decimalNumberWithString:</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>decimalNumberWithString:</b> (NSString*)numericString<br>
|
+ (NSDecimalNumber*) <b>decimalNumberWithString:</b> (NSString*)numericString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">defaultBehavior</a></h2>
|
<h2><a name="method-4">defaultBehavior</a></h2>
|
||||||
+ (id<NSDecimalNumberBehaviors>) <b>defaultBehavior</b><br>
|
+ (id<NSDecimalNumberBehaviors>) <b>defaultBehavior</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">maximumDecimalNumber</a></h2>
|
<h2><a name="method-5">maximumDecimalNumber</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>maximumDecimalNumber</b><br>
|
+ (NSDecimalNumber*) <b>maximumDecimalNumber</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">minimumDecimalNumber</a></h2>
|
<h2><a name="method-6">minimumDecimalNumber</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>minimumDecimalNumber</b><br>
|
+ (NSDecimalNumber*) <b>minimumDecimalNumber</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">notANumber</a></h2>
|
<h2><a name="method-7">notANumber</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>notANumber</b><br>
|
+ (NSDecimalNumber*) <b>notANumber</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">one</a></h2>
|
<h2><a name="method-8">one</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>one</b><br>
|
+ (NSDecimalNumber*) <b>one</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">setDefaultBehavior:</a></h2>
|
<h2><a name="method-9">setDefaultBehavior:</a></h2>
|
||||||
+ (void) <b>setDefaultBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior<br>
|
+ (void) <b>setDefaultBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">zero</a></h2>
|
<h2><a name="method-10">zero</a></h2>
|
||||||
+ (NSDecimalNumber*) <b>zero</b><br>
|
+ (NSDecimalNumber*) <b>zero</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">compare:</a></h2>
|
<h2><a name="method-11">compare:</a></h2>
|
||||||
- (NSComparisonResult) <b>compare:</b> (NSNumber*)decimalNumber<br>
|
- (NSComparisonResult) <b>compare:</b> (NSNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">decimalNumberByAdding:</a></h2>
|
<h2><a name="method-12">decimalNumberByAdding:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByAdding:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberByAdding:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">decimalNumberByAdding:</a></h2>
|
<h2><a name="method-13">decimalNumberByAdding:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByAdding:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberByAdding:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">decimalNumberByDividingBy:</a></h2>
|
<h2><a name="method-14">decimalNumberByDividingBy:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByDividingBy:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberByDividingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">decimalNumberByDividingBy:</a></h2>
|
<h2><a name="method-15">decimalNumberByDividingBy:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByDividingBy:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberByDividingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">decimalNumberByMultiplyingBy:</a></h2>
|
<h2><a name="method-16">decimalNumberByMultiplyingBy:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingBy:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">decimalNumberByMultiplyingBy:</a></h2>
|
<h2><a name="method-17">decimalNumberByMultiplyingBy:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingBy:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">decimalNumberByMultiplyingByPowerOf10:</a></h2>
|
<h2><a name="method-18">decimalNumberByMultiplyingByPowerOf10:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power<br>
|
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">decimalNumberByMultiplyingByPowerOf10:withBehavior:</a></h2>
|
<h2><a name="method-19">decimalNumberByMultiplyingByPowerOf10:withBehavior:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior<br>
|
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">decimalNumberByRaisingToPower:</a></h2>
|
<h2><a name="method-20">decimalNumberByRaisingToPower:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power<br>
|
- (NSDecimalNumber*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">decimalNumberByRaisingToPower:withBehavior:</a></h2>
|
<h2><a name="method-21">decimalNumberByRaisingToPower:withBehavior:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior<br>
|
- (NSDecimalNumber*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">decimalNumberByRoundingAccordingToBehavior:</a></h2>
|
<h2><a name="method-22">decimalNumberByRoundingAccordingToBehavior:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberByRoundingAccordingToBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior<br>
|
- (NSDecimalNumber*) <b>decimalNumberByRoundingAccordingToBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">decimalNumberBySubtracting:</a></h2>
|
<h2><a name="method-23">decimalNumberBySubtracting:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberBySubtracting:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberBySubtracting:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">decimalNumberBySubtracting:</a></h2>
|
<h2><a name="method-24">decimalNumberBySubtracting:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>decimalNumberBySubtracting:</b> (NSDecimalNumber*)decimalNumber<br>
|
- (NSDecimalNumber*) <b>decimalNumberBySubtracting:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">decimalValue</a></h2>
|
<h2><a name="method-25">decimalValue</a></h2>
|
||||||
- (NSDecimal) <b>decimalValue</b><br>
|
- (NSDecimal) <b>decimalValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">descriptionWithLocale:</a></h2>
|
<h2><a name="method-26">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">doubleValue</a></h2>
|
<h2><a name="method-27">doubleValue</a></h2>
|
||||||
- (double) <b>doubleValue</b><br>
|
- (double) <b>doubleValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">initWithDecimal:</a></h2>
|
<h2><a name="method-28">initWithDecimal:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>initWithDecimal:</b> (NSDecimal)decimal<br>
|
- (NSDecimalNumber*) <b>initWithDecimal:</b> (NSDecimal)decimal;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-29">initWithMantissa:exponent:isNegative:</a></h2>
|
<h2><a name="method-29">initWithMantissa:exponent:isNegative:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>initWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative<br>
|
- (NSDecimalNumber*) <b>initWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-30">initWithString:</a></h2>
|
<h2><a name="method-30">initWithString:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>initWithString:</b> (NSString*)numericString<br>
|
- (NSDecimalNumber*) <b>initWithString:</b> (NSString*)numericString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-31">initWithString:</a></h2>
|
<h2><a name="method-31">initWithString:</a></h2>
|
||||||
- (NSDecimalNumber*) <b>initWithString:</b> (NSString*)numericString<br>
|
- (NSDecimalNumber*) <b>initWithString:</b> (NSString*)numericString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-32">objCType</a></h2>
|
<h2><a name="method-32">objCType</a></h2>
|
||||||
- (const char*) <b>objCType</b><br>
|
- (const char*) <b>objCType</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDecimalNumberHandler" prev="NSDecimalNumber.html" next="NSDeserializer.html" up="Base.html">
|
<gsdoc base="NSDecimalNumberHandler" prev="NSDecimalNumber" next="NSDeserializer" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDecimalNumberHandler</title>
|
<title>NSDecimalNumberHandler</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -29,17 +29,17 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">defaultDecimalNumberHandler</a></h2>
|
<h2><a name="method-0">defaultDecimalNumberHandler</a></h2>
|
||||||
+ (id) <b>defaultDecimalNumberHandler</b><br>
|
+ (id) <b>defaultDecimalNumberHandler</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">decimalNumberHandlerWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:</a></h2>
|
<h2><a name="method-1">decimalNumberHandlerWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:</a></h2>
|
||||||
+ (id) <b>decimalNumberHandlerWithRoundingMode:</b> (NSRoundingMode)roundingMode <b>scale:</b> (short)scale <b>raiseOnExactness:</b> (BOOL)raiseOnExactness <b>raiseOnOverflow:</b> (BOOL)raiseOnOverflow <b>raiseOnUnderflow:</b> (BOOL)raiseOnUnderflow <b>raiseOnDivideByZero:</b> (BOOL)raiseOnDivideByZero<br>
|
+ (id) <b>decimalNumberHandlerWithRoundingMode:</b> (NSRoundingMode)roundingMode <b>scale:</b> (short)scale <b>raiseOnExactness:</b> (BOOL)raiseOnExactness <b>raiseOnOverflow:</b> (BOOL)raiseOnOverflow <b>raiseOnUnderflow:</b> (BOOL)raiseOnUnderflow <b>raiseOnDivideByZero:</b> (BOOL)raiseOnDivideByZero;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">initWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:</a></h2>
|
<h2><a name="method-2">initWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:</a></h2>
|
||||||
- (id) <b>initWithRoundingMode:</b> (NSRoundingMode)roundingMode <b>scale:</b> (short)scale <b>raiseOnExactness:</b> (BOOL)raiseOnExactness <b>raiseOnOverflow:</b> (BOOL)raiseOnOverflow <b>raiseOnUnderflow:</b> (BOOL)raiseOnUnderflow <b>raiseOnDivideByZero:</b> (BOOL)raiseOnDivideByZero<br>
|
- (id) <b>initWithRoundingMode:</b> (NSRoundingMode)roundingMode <b>scale:</b> (short)scale <b>raiseOnExactness:</b> (BOOL)raiseOnExactness <b>raiseOnOverflow:</b> (BOOL)raiseOnOverflow <b>raiseOnUnderflow:</b> (BOOL)raiseOnUnderflow <b>raiseOnDivideByZero:</b> (BOOL)raiseOnDivideByZero;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDeserializer" prev="NSDecimalNumberHandler.html" next="NSDictionary.html" up="Base.html">
|
<gsdoc base="NSDeserializer" prev="NSDecimalNumberHandler" next="NSDictionary" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDeserializer</title>
|
<title>NSDeserializer</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -30,22 +30,22 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">deserializePropertyListFromData:atCursor:mutableContainers:</a></h2>
|
<h2><a name="method-0">deserializePropertyListFromData:atCursor:mutableContainers:</a></h2>
|
||||||
+ (id) <b>deserializePropertyListFromData:</b> (NSData*)data <b>atCursor:</b> (unsigned int*)cursor <b>mutableContainers:</b> (BOOL)mutable<br>
|
+ (id) <b>deserializePropertyListFromData:</b> (NSData*)data <b>atCursor:</b> (unsigned int*)cursor <b>mutableContainers:</b> (BOOL)mutable;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">deserializePropertyListFromData:mutableContainers:</a></h2>
|
<h2><a name="method-1">deserializePropertyListFromData:mutableContainers:</a></h2>
|
||||||
+ (id) <b>deserializePropertyListFromData:</b> (NSData*)serialization <b>mutableContainers:</b> (BOOL)mutable<br>
|
+ (id) <b>deserializePropertyListFromData:</b> (NSData*)serialization <b>mutableContainers:</b> (BOOL)mutable;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">deserializePropertyListLazilyFromData:atCursor:length:mutableContainers:</a></h2>
|
<h2><a name="method-2">deserializePropertyListLazilyFromData:atCursor:length:mutableContainers:</a></h2>
|
||||||
+ (id) <b>deserializePropertyListLazilyFromData:</b> (NSData*)data <b>atCursor:</b> (unsigned int*)cursor <b>length:</b> (unsigned int)length <b>mutableContainers:</b> (BOOL)mutable<br>
|
+ (id) <b>deserializePropertyListLazilyFromData:</b> (NSData*)data <b>atCursor:</b> (unsigned int*)cursor <b>length:</b> (unsigned int)length <b>mutableContainers:</b> (BOOL)mutable;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">uniquing:</a></h2>
|
<h2><a name="method-3">uniquing:</a></h2>
|
||||||
+ (void) <b>uniquing:</b> (BOOL)flag<br>
|
+ (void) <b>uniquing:</b> (BOOL)flag;<br>
|
||||||
Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
||||||
|
|
||||||
This method turns on/off uniquing of strings as they are
|
This method turns on/off uniquing of strings as they are
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDictionary" prev="NSDeserializer.html" next="NSDirectoryEnumerator.html" up="Base.html">
|
<gsdoc base="NSDictionary" prev="NSDeserializer" next="NSDirectoryEnumerator" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDictionary</title>
|
<title>NSDictionary</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -65,38 +65,38 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allocWithZone:</a></h2>
|
<h2><a name="method-0">allocWithZone:</a></h2>
|
||||||
+ (id) <b>allocWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>allocWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">dictionary</a></h2>
|
<h2><a name="method-1">dictionary</a></h2>
|
||||||
+ (id) <b>dictionary</b><br>
|
+ (id) <b>dictionary</b>;<br>
|
||||||
|
|
||||||
Returns an empty dictionary.
|
Returns an empty dictionary.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">dictionaryWithContentsOfFile:</a></h2>
|
<h2><a name="method-2">dictionaryWithContentsOfFile:</a></h2>
|
||||||
+ (id) <b>dictionaryWithContentsOfFile:</b> (NSString*)path<br>
|
+ (id) <b>dictionaryWithContentsOfFile:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
Returns a dictionary using the file located at path.
|
Returns a dictionary using the file located at path.
|
||||||
The file must be a property list containing a dictionary as its root object.
|
The file must be a property list containing a dictionary as its root object.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">dictionaryWithDictionary:</a></h2>
|
<h2><a name="method-3">dictionaryWithDictionary:</a></h2>
|
||||||
+ (id) <b>dictionaryWithDictionary:</b> (NSDictionary*)otherDictionary<br>
|
+ (id) <b>dictionaryWithDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||||
|
|
||||||
Returns a newly created dictionary with the keys and objects of otherDictionary.
|
Returns a newly created dictionary with the keys and objects of otherDictionary.
|
||||||
(The keys and objects are not copied.)
|
(The keys and objects are not copied.)
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">dictionaryWithObject:forKey:</a></h2>
|
<h2><a name="method-4">dictionaryWithObject:forKey:</a></h2>
|
||||||
+ (id) <b>dictionaryWithObject:</b> (id)anObject <b>forKey:</b> (id)aKey<br>
|
+ (id) <b>dictionaryWithObject:</b> (id)anObject <b>forKey:</b> (id)aKey;<br>
|
||||||
|
|
||||||
Returns a dictionary containing only one object (anObject) which is associated with aKey.
|
Returns a dictionary containing only one object (anObject) which is associated with aKey.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">dictionaryWithObjects:forKey:</a></h2>
|
<h2><a name="method-5">dictionaryWithObjects:forKey:</a></h2>
|
||||||
+ (id) <b>dictionaryWithObjects:</b> (NSArray*)objects <b>forKey:</b> (NSArray*)keys<br>
|
+ (id) <b>dictionaryWithObjects:</b> (NSArray*)objects <b>forKey:</b> (NSArray*)keys;<br>
|
||||||
|
|
||||||
Returns a dictionary created using the given objects and keys.
|
Returns a dictionary created using the given objects and keys.
|
||||||
The two arrays must have the same size.
|
The two arrays must have the same size.
|
||||||
|
@ -104,14 +104,14 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">dictionaryWithObjects:forKeys:count:</a></h2>
|
<h2><a name="method-6">dictionaryWithObjects:forKeys:count:</a></h2>
|
||||||
+ (id) <b>dictionaryWithObjects:</b> (id*)objects <b>forKeys:</b> (id*)keys <b>count:</b> (unsigned int)count<br>
|
+ (id) <b>dictionaryWithObjects:</b> (id*)objects <b>forKeys:</b> (id*)keys <b>count:</b> (unsigned int)count;<br>
|
||||||
|
|
||||||
Returns a dictionary created using the C arrays objects and keys.
|
Returns a dictionary created using the C arrays objects and keys.
|
||||||
The number of elements in both C arrays must be count.
|
The number of elements in both C arrays must be count.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">dictionaryWithObjectsAndKeys:</a></h2>
|
<h2><a name="method-7">dictionaryWithObjectsAndKeys:</a></h2>
|
||||||
+ (id) <b>dictionaryWithObjectsAndKeys:</b> (id)object, ...<br>
|
+ (id) <b>dictionaryWithObjectsAndKeys:</b> (id)object, ...;<br>
|
||||||
|
|
||||||
Returns a dictionary created using the list given as argument.
|
Returns a dictionary created using the list given as argument.
|
||||||
The list is alernately composed of objects and keys.
|
The list is alernately composed of objects and keys.
|
||||||
|
@ -119,163 +119,163 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">allKeys</a></h2>
|
<h2><a name="method-8">allKeys</a></h2>
|
||||||
- (NSArray*) <b>allKeys</b><br>
|
- (NSArray*) <b>allKeys</b>;<br>
|
||||||
|
|
||||||
Returns an array containing all the dictionary's keys.
|
Returns an array containing all the dictionary's keys.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">allKeysForObject:</a></h2>
|
<h2><a name="method-9">allKeysForObject:</a></h2>
|
||||||
- (NSArray*) <b>allKeysForObject:</b> (id)anObject<br>
|
- (NSArray*) <b>allKeysForObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
Returns an array containing all the dictionary's keys that are associated with anObject.
|
Returns an array containing all the dictionary's keys that are associated with anObject.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">allValues</a></h2>
|
<h2><a name="method-10">allValues</a></h2>
|
||||||
- (NSArray*) <b>allValues</b><br>
|
- (NSArray*) <b>allValues</b>;<br>
|
||||||
|
|
||||||
Returns an array containing all the dictionary's objects.
|
Returns an array containing all the dictionary's objects.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">count</a></h2>
|
<h2><a name="method-11">count</a></h2>
|
||||||
- (unsigned int) <b>count</b><br>
|
- (unsigned int) <b>count</b>;<br>
|
||||||
|
|
||||||
Returns an unsigned integer which is the number of elements stored in the dictionary.
|
Returns an unsigned integer which is the number of elements stored in the dictionary.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">descriptionInStringsFileFormat</a></h2>
|
<h2><a name="method-12">descriptionInStringsFileFormat</a></h2>
|
||||||
- (NSString*) <b>descriptionInStringsFileFormat</b><br>
|
- (NSString*) <b>descriptionInStringsFileFormat</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
<h2><a name="method-13">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">descriptionWithLocale:</a></h2>
|
<h2><a name="method-14">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">fileGroupOwnerAccountName</a></h2>
|
<h2><a name="method-15">fileGroupOwnerAccountName</a></h2>
|
||||||
- (NSString*) <b>fileGroupOwnerAccountName</b><br>
|
- (NSString*) <b>fileGroupOwnerAccountName</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">fileModificationDate</a></h2>
|
<h2><a name="method-16">fileModificationDate</a></h2>
|
||||||
- (NSDate*) <b>fileModificationDate</b><br>
|
- (NSDate*) <b>fileModificationDate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">fileOwnerAccountName</a></h2>
|
<h2><a name="method-17">fileOwnerAccountName</a></h2>
|
||||||
- (NSString*) <b>fileOwnerAccountName</b><br>
|
- (NSString*) <b>fileOwnerAccountName</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">filePosixPermissions</a></h2>
|
<h2><a name="method-18">filePosixPermissions</a></h2>
|
||||||
- (unsigned long) <b>filePosixPermissions</b><br>
|
- (unsigned long) <b>filePosixPermissions</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">fileSize</a></h2>
|
<h2><a name="method-19">fileSize</a></h2>
|
||||||
- (unsigned long long) <b>fileSize</b><br>
|
- (unsigned long long) <b>fileSize</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">fileSystemFileNumber</a></h2>
|
<h2><a name="method-20">fileSystemFileNumber</a></h2>
|
||||||
- (unsigned long) <b>fileSystemFileNumber</b><br>
|
- (unsigned long) <b>fileSystemFileNumber</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">fileSystemNumber</a></h2>
|
<h2><a name="method-21">fileSystemNumber</a></h2>
|
||||||
- (unsigned long) <b>fileSystemNumber</b><br>
|
- (unsigned long) <b>fileSystemNumber</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">fileType</a></h2>
|
<h2><a name="method-22">fileType</a></h2>
|
||||||
- (NSString*) <b>fileType</b><br>
|
- (NSString*) <b>fileType</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">initWithContentsOfFile:</a></h2>
|
<h2><a name="method-23">initWithContentsOfFile:</a></h2>
|
||||||
- (id) <b>initWithContentsOfFile:</b> (NSString*)path<br>
|
- (id) <b>initWithContentsOfFile:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
see dictionaryWithContentOfFile:
|
see dictionaryWithContentOfFile:
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">initWithDictionary:</a></h2>
|
<h2><a name="method-24">initWithDictionary:</a></h2>
|
||||||
- (id) <b>initWithDictionary:</b> (NSDictionary*)otherDictionary<br>
|
- (id) <b>initWithDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||||
|
|
||||||
See dictionaryWithDictionary:
|
See dictionaryWithDictionary:
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">initWithObjects:</a></h2>
|
<h2><a name="method-25">initWithObjects:</a></h2>
|
||||||
- (id) <b>initWithObjects:</b> (NSArray*)objects<br>
|
- (id) <b>initWithObjects:</b> (NSArray*)objects;<br>
|
||||||
|
|
||||||
See <a href="#dictionaryWithObjects:">dictionaryWithObjects:</a>
|
See <a href="#dictionaryWithObjects:">dictionaryWithObjects:</a>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">initWithObjects:forKeys:count:</a></h2>
|
<h2><a name="method-26">initWithObjects:forKeys:count:</a></h2>
|
||||||
- (id) <b>initWithObjects:</b> (id*)objects <b>forKeys:</b> (id*)keys <b>count:</b> (unsigned int)count<br>
|
- (id) <b>initWithObjects:</b> (id*)objects <b>forKeys:</b> (id*)keys <b>count:</b> (unsigned int)count;<br>
|
||||||
|
|
||||||
see dictionaryWithObjects: forKeys: count:
|
see dictionaryWithObjects: forKeys: count:
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">initWithObjectsAndKeys:</a></h2>
|
<h2><a name="method-27">initWithObjectsAndKeys:</a></h2>
|
||||||
- (id) <b>initWithObjectsAndKeys:</b> (id)object,<br>
|
- (id) <b>initWithObjectsAndKeys:</b> (id)object,;<br>
|
||||||
|
|
||||||
see dictionaryWithObjectsAndKeys:
|
see dictionaryWithObjectsAndKeys:
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">isEqualToDictionary:</a></h2>
|
<h2><a name="method-28">isEqualToDictionary:</a></h2>
|
||||||
- (BOOL) <b>isEqualToDictionary:</b> (NSDictionary*)otherDictionary<br>
|
- (BOOL) <b>isEqualToDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-29">keyEnumerator</a></h2>
|
<h2><a name="method-29">keyEnumerator</a></h2>
|
||||||
- (NSEnumerator*) <b>keyEnumerator</b><br>
|
- (NSEnumerator*) <b>keyEnumerator</b>;<br>
|
||||||
|
|
||||||
Return an enumerator object containing all the keys of the dictionary.
|
Return an enumerator object containing all the keys of the dictionary.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-30"> keysSortedByValueUsingSelector:</a></h2>
|
<h2><a name="method-30"> keysSortedByValueUsingSelector:</a></h2>
|
||||||
- (NSArray*) <b> keysSortedByValueUsingSelector:</b> (SEL)comparator<br>
|
- (NSArray*) <b> keysSortedByValueUsingSelector:</b> (SEL)comparator;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-31">objectEnumerator</a></h2>
|
<h2><a name="method-31">objectEnumerator</a></h2>
|
||||||
- (NSEnumerator*) <b>objectEnumerator</b><br>
|
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||||
|
|
||||||
Return an enumerator object containing all the keys of the dictionary.
|
Return an enumerator object containing all the keys of the dictionary.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-32">objectForKey:</a></h2>
|
<h2><a name="method-32">objectForKey:</a></h2>
|
||||||
- (id) <b>objectForKey:</b> (id)aKey<br>
|
- (id) <b>objectForKey:</b> (id)aKey;<br>
|
||||||
|
|
||||||
Returns the first object which has aKey as key.
|
Returns the first object which has aKey as key.
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-33">objectsForKeys:notFoundMarker:</a></h2>
|
<h2><a name="method-33">objectsForKeys:notFoundMarker:</a></h2>
|
||||||
- (NSArray*) <b>objectsForKeys:</b> (NSArray*)keys <b>notFoundMarker:</b> (id)anObject<br>
|
- (NSArray*) <b>objectsForKeys:</b> (NSArray*)keys <b>notFoundMarker:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-34">writeToFile:atomically:</a></h2>
|
<h2><a name="method-34">writeToFile:atomically:</a></h2>
|
||||||
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag<br>
|
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDirectoryEnumerator" prev="NSDictionary.html" next="NSDistantObject.html" up="Base.html">
|
<gsdoc base="NSDirectoryEnumerator" prev="NSDictionary" next="NSDistantObject" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDirectoryEnumerator</title>
|
<title>NSDirectoryEnumerator</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -29,17 +29,17 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">directoryAttributes</a></h2>
|
<h2><a name="method-0">directoryAttributes</a></h2>
|
||||||
- (NSDictionary*) <b>directoryAttributes</b><br>
|
- (NSDictionary*) <b>directoryAttributes</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">fileAttributes</a></h2>
|
<h2><a name="method-1">fileAttributes</a></h2>
|
||||||
- (NSDictionary*) <b>fileAttributes</b><br>
|
- (NSDictionary*) <b>fileAttributes</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">skipDescendents</a></h2>
|
<h2><a name="method-2">skipDescendents</a></h2>
|
||||||
- (void) <b>skipDescendents</b><br>
|
- (void) <b>skipDescendents</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDistantObject" prev="NSDirectoryEnumerator.html" next="NSDistantObjectRequest.html" up="Base.html">
|
<gsdoc base="NSDistantObject" prev="NSDirectoryEnumerator" next="NSDistantObjectRequest" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDistantObject</title>
|
<title>NSDistantObject</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -32,32 +32,32 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">proxyWithLocal:connection:</a></h2>
|
<h2><a name="method-0">proxyWithLocal:connection:</a></h2>
|
||||||
+ (NSDistantObject*) <b>proxyWithLocal:</b> (id)anObject <b>connection:</b> (NSConnection*)aConnection<br>
|
+ (NSDistantObject*) <b>proxyWithLocal:</b> (id)anObject <b>connection:</b> (NSConnection*)aConnection;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">proxyWithTarget:</a></h2>
|
<h2><a name="method-1">proxyWithTarget:</a></h2>
|
||||||
+ (NSDistantObject*) <b>proxyWithTarget:</b> (id)remoteObject<br>
|
+ (NSDistantObject*) <b>proxyWithTarget:</b> (id)remoteObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">connectionForProxy</a></h2>
|
<h2><a name="method-2">connectionForProxy</a></h2>
|
||||||
- (NSConnection*) <b>connectionForProxy</b><br>
|
- (NSConnection*) <b>connectionForProxy</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">initWithLocal:connection:</a></h2>
|
<h2><a name="method-3">initWithLocal:connection:</a></h2>
|
||||||
- (id) <b>initWithLocal:</b> (id)anObject <b>connection:</b> (NSConnection*)aConnection<br>
|
- (id) <b>initWithLocal:</b> (id)anObject <b>connection:</b> (NSConnection*)aConnection;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithTarget:</a></h2>
|
<h2><a name="method-4">initWithTarget:</a></h2>
|
||||||
- (id) <b>initWithTarget:</b> (id)remoteObject<br>
|
- (id) <b>initWithTarget:</b> (id)remoteObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">setProtocolForProxy:</a></h2>
|
<h2><a name="method-5">setProtocolForProxy:</a></h2>
|
||||||
- (void) <b>setProtocolForProxy:</b> (Protocol*)aProtocol<br>
|
- (void) <b>setProtocolForProxy:</b> (Protocol*)aProtocol;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDistantObjectRequest" prev="NSDistantObject.html" next="NSDistributedLock.html" up="Base.html">
|
<gsdoc base="NSDistantObjectRequest" prev="NSDistantObject" next="NSDistributedLock" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDistantObjectRequest</title>
|
<title>NSDistantObjectRequest</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -28,22 +28,22 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">connection</a></h2>
|
<h2><a name="method-0">connection</a></h2>
|
||||||
- (NSConnection*) <b>connection</b><br>
|
- (NSConnection*) <b>connection</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">conversation</a></h2>
|
<h2><a name="method-1">conversation</a></h2>
|
||||||
- (id) <b>conversation</b><br>
|
- (id) <b>conversation</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">invocation</a></h2>
|
<h2><a name="method-2">invocation</a></h2>
|
||||||
- (NSInvocation*) <b>invocation</b><br>
|
- (NSInvocation*) <b>invocation</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">replyWithException:</a></h2>
|
<h2><a name="method-3">replyWithException:</a></h2>
|
||||||
- (void) <b>replyWithException:</b> (NSException*)exception<br>
|
- (void) <b>replyWithException:</b> (NSException*)exception;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDistributedLock" prev="NSDistantObjectRequest.html" next="NSDistributedNotificationCenter.html" up="Base.html">
|
<gsdoc base="NSDistributedLock" prev="NSDistantObjectRequest" next="NSDistributedNotificationCenter" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDistributedLock</title>
|
<title>NSDistributedLock</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -32,32 +32,32 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">lockWithPath:</a></h2>
|
<h2><a name="method-0">lockWithPath:</a></h2>
|
||||||
+ (NSDistributedLock*) <b>lockWithPath:</b> (NSString*)aPath<br>
|
+ (NSDistributedLock*) <b>lockWithPath:</b> (NSString*)aPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">breakLock</a></h2>
|
<h2><a name="method-1">breakLock</a></h2>
|
||||||
- (void) <b>breakLock</b><br>
|
- (void) <b>breakLock</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">initWithPath:</a></h2>
|
<h2><a name="method-2">initWithPath:</a></h2>
|
||||||
- (NSDistributedLock*) <b>initWithPath:</b> (NSString*)aPath<br>
|
- (NSDistributedLock*) <b>initWithPath:</b> (NSString*)aPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">lockDate</a></h2>
|
<h2><a name="method-3">lockDate</a></h2>
|
||||||
- (NSDate*) <b>lockDate</b><br>
|
- (NSDate*) <b>lockDate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">tryLock</a></h2>
|
<h2><a name="method-4">tryLock</a></h2>
|
||||||
- (BOOL) <b>tryLock</b><br>
|
- (BOOL) <b>tryLock</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">unlock</a></h2>
|
<h2><a name="method-5">unlock</a></h2>
|
||||||
- (void) <b>unlock</b><br>
|
- (void) <b>unlock</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSDistributedNotificationCenter" prev="NSDistributedLock.html" next="NSEnumerator.html" up="Base.html">
|
<gsdoc base="NSDistributedNotificationCenter" prev="NSDistributedLock" next="NSEnumerator" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSDistributedNotificationCenter</title>
|
<title>NSDistributedNotificationCenter</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -37,57 +37,57 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">defaultCenter</a></h2>
|
<h2><a name="method-0">defaultCenter</a></h2>
|
||||||
+ (NSNotificationCenter*) <b>defaultCenter</b><br>
|
+ (NSNotificationCenter*) <b>defaultCenter</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">notificationCenterForType:</a></h2>
|
<h2><a name="method-1">notificationCenterForType:</a></h2>
|
||||||
+ (NSDistributedNotificationCenter*) <b>notificationCenterForType:</b> (NSString*)type<br>
|
+ (NSDistributedNotificationCenter*) <b>notificationCenterForType:</b> (NSString*)type;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">addObserver:selector:name:</a></h2>
|
<h2><a name="method-2">addObserver:selector:name:</a></h2>
|
||||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName<br>
|
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">addObserver:selector:name:object:suspensionBehavior:</a></h2>
|
<h2><a name="method-3">addObserver:selector:name:object:suspensionBehavior:</a></h2>
|
||||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>suspensionBehavior:</b> (NSNotificationSuspensionBehavior)suspensionBehavior<br>
|
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>suspensionBehavior:</b> (NSNotificationSuspensionBehavior)suspensionBehavior;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">postNotification:</a></h2>
|
<h2><a name="method-4">postNotification:</a></h2>
|
||||||
- (void) <b>postNotification:</b> (NSNotification*)notification<br>
|
- (void) <b>postNotification:</b> (NSNotification*)notification;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">postNotificationName:</a></h2>
|
<h2><a name="method-5">postNotificationName:</a></h2>
|
||||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName<br>
|
- (void) <b>postNotificationName:</b> (NSString*)notificationName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">postNotificationName:object:userInfo:</a></h2>
|
<h2><a name="method-6">postNotificationName:object:userInfo:</a></h2>
|
||||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>userInfo:</b> (NSDictionary*)userInfo<br>
|
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">postNotificationName:object:userInfo:deliverImmediately:</a></h2>
|
<h2><a name="method-7">postNotificationName:object:userInfo:deliverImmediately:</a></h2>
|
||||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>userInfo:</b> (NSDictionary*)userInfo <b>deliverImmediately:</b> (BOOL)deliverImmediately<br>
|
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>userInfo:</b> (NSDictionary*)userInfo <b>deliverImmediately:</b> (BOOL)deliverImmediately;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">removeObserver:name:object:</a></h2>
|
<h2><a name="method-8">removeObserver:name:object:</a></h2>
|
||||||
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject<br>
|
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">setSuspended:</a></h2>
|
<h2><a name="method-9">setSuspended:</a></h2>
|
||||||
- (void) <b>setSuspended:</b> (BOOL)suspended<br>
|
- (void) <b>setSuspended:</b> (BOOL)suspended;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">suspended</a></h2>
|
<h2><a name="method-10">suspended</a></h2>
|
||||||
- (BOOL) <b>suspended</b><br>
|
- (BOOL) <b>suspended</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSEnumerator" prev="NSDistributedNotificationCenter.html" next="NSException.html" up="Base.html">
|
<gsdoc base="NSEnumerator" prev="NSDistributedNotificationCenter" next="NSException" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSEnumerator</title>
|
<title>NSEnumerator</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -28,12 +28,12 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allObjects</a></h2>
|
<h2><a name="method-0">allObjects</a></h2>
|
||||||
- (NSArray*) <b>allObjects</b><br>
|
- (NSArray*) <b>allObjects</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">nextObject</a></h2>
|
<h2><a name="method-1">nextObject</a></h2>
|
||||||
- (id) <b>nextObject</b><br>
|
- (id) <b>nextObject</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSException" prev="NSEnumerator.html" next="NSFileHandle.html" up="Base.html">
|
<gsdoc base="NSException" prev="NSEnumerator" next="NSFileHandle" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSException</title>
|
<title>NSException</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -35,47 +35,47 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">exceptionWithName:reason:userInfo:</a></h2>
|
<h2><a name="method-0">exceptionWithName:reason:userInfo:</a></h2>
|
||||||
+ (NSException*) <b>exceptionWithName:</b> (NSString*)name <b>reason:</b> (NSString*)reason <b>userInfo:</b> (NSDictionary*)userInfo<br>
|
+ (NSException*) <b>exceptionWithName:</b> (NSString*)name <b>reason:</b> (NSString*)reason <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">raise:format:</a></h2>
|
<h2><a name="method-1">raise:format:</a></h2>
|
||||||
+ (void) <b>raise:</b> (NSString*)name <b>format:</b> (NSString*)format, ...<br>
|
+ (void) <b>raise:</b> (NSString*)name <b>format:</b> (NSString*)format, ...;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">raise:format:arguments:</a></h2>
|
<h2><a name="method-2">raise:format:arguments:</a></h2>
|
||||||
+ (void) <b>raise:</b> (NSString*)name <b>format:</b> (NSString*)format <b>arguments:</b> (va_list)argList<br>
|
+ (void) <b>raise:</b> (NSString*)name <b>format:</b> (NSString*)format <b>arguments:</b> (va_list)argList;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">description</a></h2>
|
<h2><a name="method-3">description</a></h2>
|
||||||
- (NSString*) <b>description</b><br>
|
- (NSString*) <b>description</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithName:reason:userInfo:</a></h2>
|
<h2><a name="method-4">initWithName:reason:userInfo:</a></h2>
|
||||||
- (id) <b>initWithName:</b> (NSString*)name <b>reason:</b> (NSString*)reason <b>userInfo:</b> (NSDictionary*)userInfo<br>
|
- (id) <b>initWithName:</b> (NSString*)name <b>reason:</b> (NSString*)reason <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">name</a></h2>
|
<h2><a name="method-5">name</a></h2>
|
||||||
- (NSString*) <b>name</b><br>
|
- (NSString*) <b>name</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">raise</a></h2>
|
<h2><a name="method-6">raise</a></h2>
|
||||||
- (void) <b>raise</b><br>
|
- (void) <b>raise</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">reason</a></h2>
|
<h2><a name="method-7">reason</a></h2>
|
||||||
- (NSString*) <b>reason</b><br>
|
- (NSString*) <b>reason</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">userInfo</a></h2>
|
<h2><a name="method-8">userInfo</a></h2>
|
||||||
- (NSDictionary*) <b>userInfo</b><br>
|
- (NSDictionary*) <b>userInfo</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSFileHandle" prev="NSException.html" next="NSFileManager.html" up="Base.html">
|
<gsdoc base="NSFileHandle" prev="NSException" next="NSFileManager" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSFileHandle</title>
|
<title>NSFileHandle</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -47,107 +47,107 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">acceptConnectionInBackgroundAndNotify</a></h2>
|
<h2><a name="method-0">acceptConnectionInBackgroundAndNotify</a></h2>
|
||||||
- (void) <b>acceptConnectionInBackgroundAndNotify</b><br>
|
- (void) <b>acceptConnectionInBackgroundAndNotify</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">acceptConnectionInBackgroundAndNotifyForModes:</a></h2>
|
<h2><a name="method-1">acceptConnectionInBackgroundAndNotifyForModes:</a></h2>
|
||||||
- (void) <b>acceptConnectionInBackgroundAndNotifyForModes:</b> (NSArray*)modes<br>
|
- (void) <b>acceptConnectionInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">availableData</a></h2>
|
<h2><a name="method-2">availableData</a></h2>
|
||||||
- (NSData*) <b>availableData</b><br>
|
- (NSData*) <b>availableData</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">closeFile</a></h2>
|
<h2><a name="method-3">closeFile</a></h2>
|
||||||
- (void) <b>closeFile</b><br>
|
- (void) <b>closeFile</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">fileDescriptor</a></h2>
|
<h2><a name="method-4">fileDescriptor</a></h2>
|
||||||
- (int) <b>fileDescriptor</b><br>
|
- (int) <b>fileDescriptor</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">initWithFileDescriptor:</a></h2>
|
<h2><a name="method-5">initWithFileDescriptor:</a></h2>
|
||||||
- (id) <b>initWithFileDescriptor:</b> (int)fileDescriptor<br>
|
- (id) <b>initWithFileDescriptor:</b> (int)fileDescriptor;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">initWithFileDescriptor:</a></h2>
|
<h2><a name="method-6">initWithFileDescriptor:</a></h2>
|
||||||
- (id) <b>initWithFileDescriptor:</b> (int)fileDescriptor<br>
|
- (id) <b>initWithFileDescriptor:</b> (int)fileDescriptor;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">offsetInFile</a></h2>
|
<h2><a name="method-7">offsetInFile</a></h2>
|
||||||
- (unsigned long long) <b>offsetInFile</b><br>
|
- (unsigned long long) <b>offsetInFile</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">readDataOfLength:</a></h2>
|
<h2><a name="method-8">readDataOfLength:</a></h2>
|
||||||
- (NSData*) <b>readDataOfLength:</b> (unsigned int)length<br>
|
- (NSData*) <b>readDataOfLength:</b> (unsigned int)length;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">readDataToEndFile</a></h2>
|
<h2><a name="method-9">readDataToEndFile</a></h2>
|
||||||
- (NSData*) <b>readDataToEndFile</b><br>
|
- (NSData*) <b>readDataToEndFile</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">readInBackgroundAndNotify</a></h2>
|
<h2><a name="method-10">readInBackgroundAndNotify</a></h2>
|
||||||
- (void) <b>readInBackgroundAndNotify</b><br>
|
- (void) <b>readInBackgroundAndNotify</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">readInBackgroundAndNotifyForModes:</a></h2>
|
<h2><a name="method-11">readInBackgroundAndNotifyForModes:</a></h2>
|
||||||
- (void) <b>readInBackgroundAndNotifyForModes:</b> (NSArray*)modes<br>
|
- (void) <b>readInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">readToEndOfFileInBackgroundAndNotify</a></h2>
|
<h2><a name="method-12">readToEndOfFileInBackgroundAndNotify</a></h2>
|
||||||
- (void) <b>readToEndOfFileInBackgroundAndNotify</b><br>
|
- (void) <b>readToEndOfFileInBackgroundAndNotify</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">readToEndOfFileInBackgroundAndNotifyForModes:</a></h2>
|
<h2><a name="method-13">readToEndOfFileInBackgroundAndNotifyForModes:</a></h2>
|
||||||
- (void) <b>readToEndOfFileInBackgroundAndNotifyForModes:</b> (NSArray*)modes<br>
|
- (void) <b>readToEndOfFileInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">seekToEndOfFile</a></h2>
|
<h2><a name="method-14">seekToEndOfFile</a></h2>
|
||||||
- (unsigned long long) <b>seekToEndOfFile</b><br>
|
- (unsigned long long) <b>seekToEndOfFile</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">seekToFileOffset:</a></h2>
|
<h2><a name="method-15">seekToFileOffset:</a></h2>
|
||||||
- (void) <b>seekToFileOffset:</b> (unsigned long long)offset<br>
|
- (void) <b>seekToFileOffset:</b> (unsigned long long)offset;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">synchronizeFile</a></h2>
|
<h2><a name="method-16">synchronizeFile</a></h2>
|
||||||
- (void) <b>synchronizeFile</b><br>
|
- (void) <b>synchronizeFile</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">truncateFileAtOffset:</a></h2>
|
<h2><a name="method-17">truncateFileAtOffset:</a></h2>
|
||||||
- (void) <b>truncateFileAtOffset:</b> (unsigned long long)offset<br>
|
- (void) <b>truncateFileAtOffset:</b> (unsigned long long)offset;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">waitForDataInBackgroundAndNotify</a></h2>
|
<h2><a name="method-18">waitForDataInBackgroundAndNotify</a></h2>
|
||||||
- (void) <b>waitForDataInBackgroundAndNotify</b><br>
|
- (void) <b>waitForDataInBackgroundAndNotify</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">waitForDataInBackgroundAndNotifyForModes:</a></h2>
|
<h2><a name="method-19">waitForDataInBackgroundAndNotifyForModes:</a></h2>
|
||||||
- (void) <b>waitForDataInBackgroundAndNotifyForModes:</b> (NSArray*)modes<br>
|
- (void) <b>waitForDataInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">writeData:</a></h2>
|
<h2><a name="method-20">writeData:</a></h2>
|
||||||
- (void) <b>writeData:</b> (NSData*)data<br>
|
- (void) <b>writeData:</b> (NSData*)data;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSFileManager" prev="NSFileHandle.html" next="NSFormatter.html" up="Base.html">
|
<gsdoc base="NSFileManager" prev="NSFileHandle" next="NSFormatter" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSFileManager</title>
|
<title>NSFileManager</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -55,147 +55,147 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">defaultManager</a></h2>
|
<h2><a name="method-0">defaultManager</a></h2>
|
||||||
+ (NSFileManager*) <b>defaultManager</b><br>
|
+ (NSFileManager*) <b>defaultManager</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">changeCurrentDirectoryPath:</a></h2>
|
<h2><a name="method-1">changeCurrentDirectoryPath:</a></h2>
|
||||||
- (BOOL) <b>changeCurrentDirectoryPath:</b> (NSString*)path<br>
|
- (BOOL) <b>changeCurrentDirectoryPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">changeFileAttributes:</a></h2>
|
<h2><a name="method-2">changeFileAttributes:</a></h2>
|
||||||
- (BOOL) <b>changeFileAttributes:</b> (NSDictionary*)attributes<br>
|
- (BOOL) <b>changeFileAttributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">contentsAtPath:</a></h2>
|
<h2><a name="method-3">contentsAtPath:</a></h2>
|
||||||
- (NSData*) <b>contentsAtPath:</b> (NSString*)path<br>
|
- (NSData*) <b>contentsAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">contentsEqualAtPath:andPath:</a></h2>
|
<h2><a name="method-4">contentsEqualAtPath:andPath:</a></h2>
|
||||||
- (BOOL) <b>contentsEqualAtPath:</b> (NSString*)path1 <b>andPath:</b> (NSString*)path2<br>
|
- (BOOL) <b>contentsEqualAtPath:</b> (NSString*)path1 <b>andPath:</b> (NSString*)path2;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">copyPath:toPath:handler:</a></h2>
|
<h2><a name="method-5">copyPath:toPath:handler:</a></h2>
|
||||||
- (BOOL) <b>copyPath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler<br>
|
- (BOOL) <b>copyPath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">createDirectoryAtPath:attributes:</a></h2>
|
<h2><a name="method-6">createDirectoryAtPath:attributes:</a></h2>
|
||||||
- (BOOL) <b>createDirectoryAtPath:</b> (NSString*)path <b>attributes:</b> (NSDictionary*)attributes<br>
|
- (BOOL) <b>createDirectoryAtPath:</b> (NSString*)path <b>attributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">createFileAtPath:contents:attributes:</a></h2>
|
<h2><a name="method-7">createFileAtPath:contents:attributes:</a></h2>
|
||||||
- (BOOL) <b>createFileAtPath:</b> (NSString*)path <b>contents:</b> (NSData*)contents <b>attributes:</b> (NSDictionary*)attributes<br>
|
- (BOOL) <b>createFileAtPath:</b> (NSString*)path <b>contents:</b> (NSData*)contents <b>attributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">createSymbolicLinkAtPath:pathContent:</a></h2>
|
<h2><a name="method-8">createSymbolicLinkAtPath:pathContent:</a></h2>
|
||||||
- (BOOL) <b>createSymbolicLinkAtPath:</b> (NSString*)path <b>pathContent:</b> (NSString*)otherPath<br>
|
- (BOOL) <b>createSymbolicLinkAtPath:</b> (NSString*)path <b>pathContent:</b> (NSString*)otherPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">currentDirectoryPath</a></h2>
|
<h2><a name="method-9">currentDirectoryPath</a></h2>
|
||||||
- (NSString*) <b>currentDirectoryPath</b><br>
|
- (NSString*) <b>currentDirectoryPath</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">directoryContentsAtPath:</a></h2>
|
<h2><a name="method-10">directoryContentsAtPath:</a></h2>
|
||||||
- (NSArray*) <b>directoryContentsAtPath:</b> (NSString*)path<br>
|
- (NSArray*) <b>directoryContentsAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">enumeratorAtPath:</a></h2>
|
<h2><a name="method-11">enumeratorAtPath:</a></h2>
|
||||||
- (NSDirectoryEnumerator*) <b>enumeratorAtPath:</b> (NSString*)path<br>
|
- (NSDirectoryEnumerator*) <b>enumeratorAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">fileAttributesAtPath:traverseLink:</a></h2>
|
<h2><a name="method-12">fileAttributesAtPath:traverseLink:</a></h2>
|
||||||
- (NSDictionary*) <b>fileAttributesAtPath:</b> (NSString*)path <b>traverseLink:</b> (BOOL)flag<br>
|
- (NSDictionary*) <b>fileAttributesAtPath:</b> (NSString*)path <b>traverseLink:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">fileExistsAtPath:</a></h2>
|
<h2><a name="method-13">fileExistsAtPath:</a></h2>
|
||||||
- (BOOL) <b>fileExistsAtPath:</b> (NSString*)path<br>
|
- (BOOL) <b>fileExistsAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">fileExistsAtPath:isDirectory:</a></h2>
|
<h2><a name="method-14">fileExistsAtPath:isDirectory:</a></h2>
|
||||||
- (BOOL) <b>fileExistsAtPath:</b> (NSString*)path <b>isDirectory:</b> (BOOL*)isDirectory<br>
|
- (BOOL) <b>fileExistsAtPath:</b> (NSString*)path <b>isDirectory:</b> (BOOL*)isDirectory;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">fileSystemAttributesAtPath:</a></h2>
|
<h2><a name="method-15">fileSystemAttributesAtPath:</a></h2>
|
||||||
- (NSDictionary*) <b>fileSystemAttributesAtPath:</b> (NSString*)path<br>
|
- (NSDictionary*) <b>fileSystemAttributesAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">fileSystemRepresentationWithPath:</a></h2>
|
<h2><a name="method-16">fileSystemRepresentationWithPath:</a></h2>
|
||||||
- (const char*) <b>fileSystemRepresentationWithPath:</b> (NSString*)path<br>
|
- (const char*) <b>fileSystemRepresentationWithPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">isDeletableFileAtPath:</a></h2>
|
<h2><a name="method-17">isDeletableFileAtPath:</a></h2>
|
||||||
- (BOOL) <b>isDeletableFileAtPath:</b> (NSString*)path<br>
|
- (BOOL) <b>isDeletableFileAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">isExecutableFileAtPath:</a></h2>
|
<h2><a name="method-18">isExecutableFileAtPath:</a></h2>
|
||||||
- (BOOL) <b>isExecutableFileAtPath:</b> (NSString*)path<br>
|
- (BOOL) <b>isExecutableFileAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">isReadableFileAtPath:</a></h2>
|
<h2><a name="method-19">isReadableFileAtPath:</a></h2>
|
||||||
- (BOOL) <b>isReadableFileAtPath:</b> (NSString*)path<br>
|
- (BOOL) <b>isReadableFileAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">isWritableFileAtPath:</a></h2>
|
<h2><a name="method-20">isWritableFileAtPath:</a></h2>
|
||||||
- (BOOL) <b>isWritableFileAtPath:</b> (NSString*)path<br>
|
- (BOOL) <b>isWritableFileAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">linkPath:toPath:handler:</a></h2>
|
<h2><a name="method-21">linkPath:toPath:handler:</a></h2>
|
||||||
- (BOOL) <b>linkPath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler<br>
|
- (BOOL) <b>linkPath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">movePath:toPath:handler:</a></h2>
|
<h2><a name="method-22">movePath:toPath:handler:</a></h2>
|
||||||
- (BOOL) <b>movePath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler<br>
|
- (BOOL) <b>movePath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">pathContentOfSymbolicLinkAtPath:</a></h2>
|
<h2><a name="method-23">pathContentOfSymbolicLinkAtPath:</a></h2>
|
||||||
- (NSString*) <b>pathContentOfSymbolicLinkAtPath:</b> (NSString*)cStringPath<br>
|
- (NSString*) <b>pathContentOfSymbolicLinkAtPath:</b> (NSString*)cStringPath;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">removeFileAtPath:handler:</a></h2>
|
<h2><a name="method-24">removeFileAtPath:handler:</a></h2>
|
||||||
- (BOOL) <b>removeFileAtPath:</b> (NSString*)path <b>handler:</b> handler<br>
|
- (BOOL) <b>removeFileAtPath:</b> (NSString*)path <b>handler:</b> handler;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">stringWithFileSystemRepresentation:</a></h2>
|
<h2><a name="method-25">stringWithFileSystemRepresentation:</a></h2>
|
||||||
- (NSString*) <b>stringWithFileSystemRepresentation:</b> (const char*)string<br>
|
- (NSString*) <b>stringWithFileSystemRepresentation:</b> (const char*)string;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">subpathsAtPath:</a></h2>
|
<h2><a name="method-26">subpathsAtPath:</a></h2>
|
||||||
- (NSArray*) <b>subpathsAtPath:</b> (NSString*)path<br>
|
- (NSArray*) <b>subpathsAtPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">fileManager:shouldProceedAfterError:</a></h2>
|
<h2><a name="method-27">fileManager:shouldProceedAfterError:</a></h2>
|
||||||
- (BOOL) <b>fileManager:</b> (NSFileManager*)manager <b>shouldProceedAfterError:</b> (NSDictionary*)errorInfo<br>
|
- (BOOL) <b>fileManager:</b> (NSFileManager*)manager <b>shouldProceedAfterError:</b> (NSDictionary*)errorInfo;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">fileManager:willProcessPath:</a></h2>
|
<h2><a name="method-28">fileManager:willProcessPath:</a></h2>
|
||||||
- (BOOL) <b>fileManager:</b> (NSFileManager*)manager <b>willProcessPath:</b> (NSString*)path<br>
|
- (BOOL) <b>fileManager:</b> (NSFileManager*)manager <b>willProcessPath:</b> (NSString*)path;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSFormatter" prev="NSFileManager.html" next="NSHost.html" up="Base.html">
|
<gsdoc base="NSFormatter" prev="NSFileManager" next="NSHost" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSFormatter</title>
|
<title>NSFormatter</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -31,27 +31,27 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">attributedStringForObjectValue:withDefaultAttributes:</a></h2>
|
<h2><a name="method-0">attributedStringForObjectValue:withDefaultAttributes:</a></h2>
|
||||||
- (NSAttributedString*) <b>attributedStringForObjectValue:</b> (id)anObject <b>withDefaultAttributes:</b> (NSDictionary*)attributes<br>
|
- (NSAttributedString*) <b>attributedStringForObjectValue:</b> (id)anObject <b>withDefaultAttributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">editingStringForObjectValue:</a></h2>
|
<h2><a name="method-1">editingStringForObjectValue:</a></h2>
|
||||||
- (NSString*) <b>editingStringForObjectValue:</b> (id)anObject<br>
|
- (NSString*) <b>editingStringForObjectValue:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">getObjectValue:forString:errorDescription:</a></h2>
|
<h2><a name="method-2">getObjectValue:forString:errorDescription:</a></h2>
|
||||||
- (BOOL) <b>getObjectValue:</b> (id*)anObject <b>forString:</b> (NSString*)string <b>errorDescription:</b> (NSString**)error<br>
|
- (BOOL) <b>getObjectValue:</b> (id*)anObject <b>forString:</b> (NSString*)string <b>errorDescription:</b> (NSString**)error;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">isPartialStringValid:</a></h2>
|
<h2><a name="method-3">isPartialStringValid:</a></h2>
|
||||||
- (BOOL) <b>isPartialStringValid:</b> <br>
|
- (BOOL) <b>isPartialStringValid:</b> ;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">stringForObjectValue:</a></h2>
|
<h2><a name="method-4">stringForObjectValue:</a></h2>
|
||||||
- (NSString*) <b>stringForObjectValue:</b> (id)anObject<br>
|
- (NSString*) <b>stringForObjectValue:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSHost" prev="NSFormatter.html" next="NSInvocation.html" up="Base.html">
|
<gsdoc base="NSHost" prev="NSFormatter" next="NSInvocation" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSHost</title>
|
<title>NSHost</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -37,57 +37,57 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">currentHost</a></h2>
|
<h2><a name="method-0">currentHost</a></h2>
|
||||||
+ (NSHost*) <b>currentHost</b><br>
|
+ (NSHost*) <b>currentHost</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">flushHostCache</a></h2>
|
<h2><a name="method-1">flushHostCache</a></h2>
|
||||||
+ (void) <b>flushHostCache</b><br>
|
+ (void) <b>flushHostCache</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">hostWithAddress:</a></h2>
|
<h2><a name="method-2">hostWithAddress:</a></h2>
|
||||||
+ (NSHost*) <b>hostWithAddress:</b> (NSString*)address<br>
|
+ (NSHost*) <b>hostWithAddress:</b> (NSString*)address;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">hostWithName:</a></h2>
|
<h2><a name="method-3">hostWithName:</a></h2>
|
||||||
+ (NSHost*) <b>hostWithName:</b> (NSString*)name<br>
|
+ (NSHost*) <b>hostWithName:</b> (NSString*)name;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">isHostCacheEnabled</a></h2>
|
<h2><a name="method-4">isHostCacheEnabled</a></h2>
|
||||||
+ (BOOL) <b>isHostCacheEnabled</b><br>
|
+ (BOOL) <b>isHostCacheEnabled</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">setHostCacheEnabled:</a></h2>
|
<h2><a name="method-5">setHostCacheEnabled:</a></h2>
|
||||||
+ (void) <b>setHostCacheEnabled:</b> (BOOL)flag<br>
|
+ (void) <b>setHostCacheEnabled:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">address</a></h2>
|
<h2><a name="method-6">address</a></h2>
|
||||||
- (NSString*) <b>address</b><br>
|
- (NSString*) <b>address</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">addresses</a></h2>
|
<h2><a name="method-7">addresses</a></h2>
|
||||||
- (NSArray*) <b>addresses</b><br>
|
- (NSArray*) <b>addresses</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">isEqualToHost:</a></h2>
|
<h2><a name="method-8">isEqualToHost:</a></h2>
|
||||||
- (BOOL) <b>isEqualToHost:</b> (NSHost*)aHost<br>
|
- (BOOL) <b>isEqualToHost:</b> (NSHost*)aHost;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">name</a></h2>
|
<h2><a name="method-9">name</a></h2>
|
||||||
- (NSString*) <b>name</b><br>
|
- (NSString*) <b>name</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">names</a></h2>
|
<h2><a name="method-10">names</a></h2>
|
||||||
- (NSArray*) <b>names</b><br>
|
- (NSArray*) <b>names</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSInvocation" prev="NSHost.html" next="NSLock.html" up="Base.html">
|
<gsdoc base="NSInvocation" prev="NSHost" next="NSLock" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSInvocation</title>
|
<title>NSInvocation</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -40,72 +40,72 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">invocationWithMethodSignature:</a></h2>
|
<h2><a name="method-0">invocationWithMethodSignature:</a></h2>
|
||||||
+ (NSInvocation*) <b>invocationWithMethodSignature:</b> (NSMethodSignature*)signature<br>
|
+ (NSInvocation*) <b>invocationWithMethodSignature:</b> (NSMethodSignature*)signature;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">argumentsRetained</a></h2>
|
<h2><a name="method-1">argumentsRetained</a></h2>
|
||||||
- (BOOL) <b>argumentsRetained</b><br>
|
- (BOOL) <b>argumentsRetained</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">getArgument:atIndex:</a></h2>
|
<h2><a name="method-2">getArgument:atIndex:</a></h2>
|
||||||
- (void) <b>getArgument:</b> (void*)buffer <b>atIndex:</b> (int)index<br>
|
- (void) <b>getArgument:</b> (void*)buffer <b>atIndex:</b> (int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">getReturnValue:</a></h2>
|
<h2><a name="method-3">getReturnValue:</a></h2>
|
||||||
- (void) <b>getReturnValue:</b> (void*)buffer<br>
|
- (void) <b>getReturnValue:</b> (void*)buffer;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">invoke</a></h2>
|
<h2><a name="method-4">invoke</a></h2>
|
||||||
- (void) <b>invoke</b><br>
|
- (void) <b>invoke</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">invokeWithTarget:</a></h2>
|
<h2><a name="method-5">invokeWithTarget:</a></h2>
|
||||||
- (void) <b>invokeWithTarget:</b> (id)anObject<br>
|
- (void) <b>invokeWithTarget:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">methodSignature</a></h2>
|
<h2><a name="method-6">methodSignature</a></h2>
|
||||||
- (NSMethodSignature*) <b>methodSignature</b><br>
|
- (NSMethodSignature*) <b>methodSignature</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">retainArguments</a></h2>
|
<h2><a name="method-7">retainArguments</a></h2>
|
||||||
- (void) <b>retainArguments</b><br>
|
- (void) <b>retainArguments</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">selector</a></h2>
|
<h2><a name="method-8">selector</a></h2>
|
||||||
- (SEL) <b>selector</b><br>
|
- (SEL) <b>selector</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">setArgument:atIndex:</a></h2>
|
<h2><a name="method-9">setArgument:atIndex:</a></h2>
|
||||||
- (void) <b>setArgument:</b> (void*)buffer <b>atIndex:</b> (int)index<br>
|
- (void) <b>setArgument:</b> (void*)buffer <b>atIndex:</b> (int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">setReturnValue:</a></h2>
|
<h2><a name="method-10">setReturnValue:</a></h2>
|
||||||
- (void) <b>setReturnValue:</b> (void*)buffer<br>
|
- (void) <b>setReturnValue:</b> (void*)buffer;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">setSelector:</a></h2>
|
<h2><a name="method-11">setSelector:</a></h2>
|
||||||
- (void) <b>setSelector:</b> (SEL)selector<br>
|
- (void) <b>setSelector:</b> (SEL)selector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">setTarget:</a></h2>
|
<h2><a name="method-12">setTarget:</a></h2>
|
||||||
- (void) <b>setTarget:</b> (id)anObject<br>
|
- (void) <b>setTarget:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">target</a></h2>
|
<h2><a name="method-13">target</a></h2>
|
||||||
- (id) <b>target</b><br>
|
- (id) <b>target</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSLock" prev="NSInvocation.html" next="NSMethodSignature.html" up="Base.html">
|
<gsdoc base="NSLock" prev="NSInvocation" next="NSMethodSignature" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSLock</title>
|
<title>NSLock</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -28,12 +28,12 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">lockBeforeDate:</a></h2>
|
<h2><a name="method-0">lockBeforeDate:</a></h2>
|
||||||
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit<br>
|
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">tryLock</a></h2>
|
<h2><a name="method-1">tryLock</a></h2>
|
||||||
- (BOOL) <b>tryLock</b><br>
|
- (BOOL) <b>tryLock</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMethodSignature" prev="NSLock.html" next="NSMutableArray.html" up="Base.html">
|
<gsdoc base="NSMethodSignature" prev="NSLock" next="NSMutableArray" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMethodSignature</title>
|
<title>NSMethodSignature</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -32,32 +32,32 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">getArgumentTypeAtIndex:</a></h2>
|
<h2><a name="method-0">getArgumentTypeAtIndex:</a></h2>
|
||||||
- (const char*) <b>getArgumentTypeAtIndex:</b> (unsigned int)index<br>
|
- (const char*) <b>getArgumentTypeAtIndex:</b> (unsigned int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">frameLength</a></h2>
|
<h2><a name="method-1">frameLength</a></h2>
|
||||||
- (unsigned int) <b>frameLength</b><br>
|
- (unsigned int) <b>frameLength</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">isOneway</a></h2>
|
<h2><a name="method-2">isOneway</a></h2>
|
||||||
- (BOOL) <b>isOneway</b><br>
|
- (BOOL) <b>isOneway</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">methodReturnLength</a></h2>
|
<h2><a name="method-3">methodReturnLength</a></h2>
|
||||||
- (unsigned int) <b>methodReturnLength</b><br>
|
- (unsigned int) <b>methodReturnLength</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">methodReturnType</a></h2>
|
<h2><a name="method-4">methodReturnType</a></h2>
|
||||||
- (char*) <b>methodReturnType</b><br>
|
- (char*) <b>methodReturnType</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">numberOfArguments</a></h2>
|
<h2><a name="method-5">numberOfArguments</a></h2>
|
||||||
- (unsigned int) <b>numberOfArguments</b><br>
|
- (unsigned int) <b>numberOfArguments</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableArray" prev="NSMethodSignature.html" next="NSMutableAttributedString.html" up="Base.html">
|
<gsdoc base="NSMutableArray" prev="NSMethodSignature" next="NSMutableAttributedString" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableArray</title>
|
<title>NSMutableArray</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -47,107 +47,107 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">arrayWithCapacity:</a></h2>
|
<h2><a name="method-0">arrayWithCapacity:</a></h2>
|
||||||
+ (id) <b>arrayWithCapacity:</b> (unsigned int)numItems<br>
|
+ (id) <b>arrayWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">addObject:</a></h2>
|
<h2><a name="method-1">addObject:</a></h2>
|
||||||
- (void) <b>addObject:</b> (id)anObject<br>
|
- (void) <b>addObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">addObjectsFromArray:</a></h2>
|
<h2><a name="method-2">addObjectsFromArray:</a></h2>
|
||||||
- (void) <b>addObjectsFromArray:</b> (NSArray*)otherArray<br>
|
- (void) <b>addObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">initWithCapacity:</a></h2>
|
<h2><a name="method-3">initWithCapacity:</a></h2>
|
||||||
- (id) <b>initWithCapacity:</b> (unsigned int)numItems<br>
|
- (id) <b>initWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">insertObject:</a></h2>
|
<h2><a name="method-4">insertObject:</a></h2>
|
||||||
- (void) <b>insertObject:</b> (id)anObject<br>
|
- (void) <b>insertObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">removeAllObjects</a></h2>
|
<h2><a name="method-5">removeAllObjects</a></h2>
|
||||||
- (void) <b>removeAllObjects</b><br>
|
- (void) <b>removeAllObjects</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">removeLastObject</a></h2>
|
<h2><a name="method-6">removeLastObject</a></h2>
|
||||||
- (void) <b>removeLastObject</b><br>
|
- (void) <b>removeLastObject</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">removeObject:</a></h2>
|
<h2><a name="method-7">removeObject:</a></h2>
|
||||||
- (void) <b>removeObject:</b> (id)anObject<br>
|
- (void) <b>removeObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">removeObject:</a></h2>
|
<h2><a name="method-8">removeObject:</a></h2>
|
||||||
- (void) <b>removeObject:</b> (id)anObject<br>
|
- (void) <b>removeObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">removeObjectAtIndex:</a></h2>
|
<h2><a name="method-9">removeObjectAtIndex:</a></h2>
|
||||||
- (void) <b>removeObjectAtIndex:</b> (unsigned int)index<br>
|
- (void) <b>removeObjectAtIndex:</b> (unsigned int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">removeObjectIdenticalTo:</a></h2>
|
<h2><a name="method-10">removeObjectIdenticalTo:</a></h2>
|
||||||
- (void) <b>removeObjectIdenticalTo:</b> (id)anObject<br>
|
- (void) <b>removeObjectIdenticalTo:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">removeObjectIdenticalTo:</a></h2>
|
<h2><a name="method-11">removeObjectIdenticalTo:</a></h2>
|
||||||
- (void) <b>removeObjectIdenticalTo:</b> (id)anObject<br>
|
- (void) <b>removeObjectIdenticalTo:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">removeObjectsFromIndices:numIndices:</a></h2>
|
<h2><a name="method-12">removeObjectsFromIndices:numIndices:</a></h2>
|
||||||
- (void) <b>removeObjectsFromIndices:</b> (unsigned int*)indices <b>numIndices:</b> (unsigned int)count<br>
|
- (void) <b>removeObjectsFromIndices:</b> (unsigned int*)indices <b>numIndices:</b> (unsigned int)count;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">removeObjectsInArray:</a></h2>
|
<h2><a name="method-13">removeObjectsInArray:</a></h2>
|
||||||
- (void) <b>removeObjectsInArray:</b> (NSArray*)otherArray<br>
|
- (void) <b>removeObjectsInArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">removeObjectsInRange:</a></h2>
|
<h2><a name="method-14">removeObjectsInRange:</a></h2>
|
||||||
- (void) <b>removeObjectsInRange:</b> (NSRange)aRange<br>
|
- (void) <b>removeObjectsInRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">replaceObjectAtIndex:withObject:</a></h2>
|
<h2><a name="method-15">replaceObjectAtIndex:withObject:</a></h2>
|
||||||
- (void) <b>replaceObjectAtIndex:</b> (unsigned int)index <b>withObject:</b> (id)anObject<br>
|
- (void) <b>replaceObjectAtIndex:</b> (unsigned int)index <b>withObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">replaceObjectsInRange:withObjectsFromArray:</a></h2>
|
<h2><a name="method-16">replaceObjectsInRange:withObjectsFromArray:</a></h2>
|
||||||
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (NSArray*)otherArray<br>
|
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">replaceObjectsInRange:withObjectsFromArray:</a></h2>
|
<h2><a name="method-17">replaceObjectsInRange:withObjectsFromArray:</a></h2>
|
||||||
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (NSArray*)otherArray<br>
|
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">setArray:</a></h2>
|
<h2><a name="method-18">setArray:</a></h2>
|
||||||
- (void) <b>setArray:</b> (NSArray*)otherArray<br>
|
- (void) <b>setArray:</b> (NSArray*)otherArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">sortUsingFunction:context:</a></h2>
|
<h2><a name="method-19">sortUsingFunction:context:</a></h2>
|
||||||
- (void) <b>sortUsingFunction:</b> (int(*)(id,id,void*))compare <b>context:</b> (void*)context<br>
|
- (void) <b>sortUsingFunction:</b> (int(*)(id,id,void*))compare <b>context:</b> (void*)context;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">sortUsingSelector:</a></h2>
|
<h2><a name="method-20">sortUsingSelector:</a></h2>
|
||||||
- (void) <b>sortUsingSelector:</b> (SEL)comparator<br>
|
- (void) <b>sortUsingSelector:</b> (SEL)comparator;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableAttributedString" prev="NSMutableArray.html" next="NSMutableCharacterSet.html" up="Base.html">
|
<gsdoc base="NSMutableAttributedString" prev="NSMutableArray" next="NSMutableCharacterSet" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableAttributedString</title>
|
<title>NSMutableAttributedString</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -39,67 +39,67 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">addAttribute:value:</a></h2>
|
<h2><a name="method-0">addAttribute:value:</a></h2>
|
||||||
- (void) <b>addAttribute:</b> (NSString*)name <b>value:</b> (id)value<br>
|
- (void) <b>addAttribute:</b> (NSString*)name <b>value:</b> (id)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">addAttributes:</a></h2>
|
<h2><a name="method-1">addAttributes:</a></h2>
|
||||||
- (void) <b>addAttributes:</b> (NSDictionary*)attributes<br>
|
- (void) <b>addAttributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">appendAttributedString:</a></h2>
|
<h2><a name="method-2">appendAttributedString:</a></h2>
|
||||||
- (void) <b>appendAttributedString:</b> (NSAttributedString*)attributedString<br>
|
- (void) <b>appendAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">beginEditing</a></h2>
|
<h2><a name="method-3">beginEditing</a></h2>
|
||||||
- (void) <b>beginEditing</b><br>
|
- (void) <b>beginEditing</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">deleteCharactersInRange:</a></h2>
|
<h2><a name="method-4">deleteCharactersInRange:</a></h2>
|
||||||
- (void) <b>deleteCharactersInRange:</b> (NSRange)aRange<br>
|
- (void) <b>deleteCharactersInRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">endEditing</a></h2>
|
<h2><a name="method-5">endEditing</a></h2>
|
||||||
- (void) <b>endEditing</b><br>
|
- (void) <b>endEditing</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">insertAttributedString:</a></h2>
|
<h2><a name="method-6">insertAttributedString:</a></h2>
|
||||||
- (void) <b>insertAttributedString:</b> (NSAttributedString*)attributedString<br>
|
- (void) <b>insertAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">mutableString</a></h2>
|
<h2><a name="method-7">mutableString</a></h2>
|
||||||
- (NSMutableString*) <b>mutableString</b><br>
|
- (NSMutableString*) <b>mutableString</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">removeAttribute:range:</a></h2>
|
<h2><a name="method-8">removeAttribute:range:</a></h2>
|
||||||
- (void) <b>removeAttribute:</b> (NSString*)name <b>range:</b> (NSRange)aRange<br>
|
- (void) <b>removeAttribute:</b> (NSString*)name <b>range:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">replaceCharactersInRange:withAttributedString:</a></h2>
|
<h2><a name="method-9">replaceCharactersInRange:withAttributedString:</a></h2>
|
||||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withAttributedString:</b> (NSAttributedString*)attributedString<br>
|
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">replaceCharactersInRange:withString:</a></h2>
|
<h2><a name="method-10">replaceCharactersInRange:withString:</a></h2>
|
||||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (NSString*)aString<br>
|
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">setAttributedString:</a></h2>
|
<h2><a name="method-11">setAttributedString:</a></h2>
|
||||||
- (void) <b>setAttributedString:</b> (NSAttributedString*)attributedString<br>
|
- (void) <b>setAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">setAttributes:</a></h2>
|
<h2><a name="method-12">setAttributes:</a></h2>
|
||||||
- (void) <b>setAttributes:</b> (NSDictionary*)attributes<br>
|
- (void) <b>setAttributes:</b> (NSDictionary*)attributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableCharacterSet" prev="NSMutableAttributedString.html" next="NSMutableData.html" up="Base.html">
|
<gsdoc base="NSMutableCharacterSet" prev="NSMutableAttributedString" next="NSMutableData" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableCharacterSet</title>
|
<title>NSMutableCharacterSet</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -33,37 +33,37 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">addCharactersInRange:</a></h2>
|
<h2><a name="method-0">addCharactersInRange:</a></h2>
|
||||||
- (void) <b>addCharactersInRange:</b> (NSRange)aRange<br>
|
- (void) <b>addCharactersInRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">addCharactersInString:</a></h2>
|
<h2><a name="method-1">addCharactersInString:</a></h2>
|
||||||
- (void) <b>addCharactersInString:</b> (NSString*)aString<br>
|
- (void) <b>addCharactersInString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">formIntersectionWithCharacterSet:</a></h2>
|
<h2><a name="method-2">formIntersectionWithCharacterSet:</a></h2>
|
||||||
- (void) <b>formIntersectionWithCharacterSet:</b> (NSCharacterSet*)otherSet<br>
|
- (void) <b>formIntersectionWithCharacterSet:</b> (NSCharacterSet*)otherSet;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">formUnionWithCharacterSet:</a></h2>
|
<h2><a name="method-3">formUnionWithCharacterSet:</a></h2>
|
||||||
- (void) <b>formUnionWithCharacterSet:</b> (NSCharacterSet*)otherSet<br>
|
- (void) <b>formUnionWithCharacterSet:</b> (NSCharacterSet*)otherSet;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">invert</a></h2>
|
<h2><a name="method-4">invert</a></h2>
|
||||||
- (void) <b>invert</b><br>
|
- (void) <b>invert</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">removeCharactersInRange:</a></h2>
|
<h2><a name="method-5">removeCharactersInRange:</a></h2>
|
||||||
- (void) <b>removeCharactersInRange:</b> (NSRange)aRange<br>
|
- (void) <b>removeCharactersInRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">removeCharactersInString:</a></h2>
|
<h2><a name="method-6">removeCharactersInString:</a></h2>
|
||||||
- (void) <b>removeCharactersInString:</b> (NSString*)aString<br>
|
- (void) <b>removeCharactersInString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableData" prev="NSMutableCharacterSet.html" next="NSMutableDictionary.html" up="Base.html">
|
<gsdoc base="NSMutableData" prev="NSMutableCharacterSet" next="NSMutableDictionary" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableData</title>
|
<title>NSMutableData</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -44,97 +44,97 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allocWithZone:</a></h2>
|
<h2><a name="method-0">allocWithZone:</a></h2>
|
||||||
+ (id) <b>allocWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>allocWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">dataWithCapacity:</a></h2>
|
<h2><a name="method-1">dataWithCapacity:</a></h2>
|
||||||
+ (id) <b>dataWithCapacity:</b> (unsigned int)aNumItems<br>
|
+ (id) <b>dataWithCapacity:</b> (unsigned int)aNumItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">dataWithLength:</a></h2>
|
<h2><a name="method-2">dataWithLength:</a></h2>
|
||||||
+ (id) <b>dataWithLength:</b> (unsigned int)length<br>
|
+ (id) <b>dataWithLength:</b> (unsigned int)length;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">appendBytes:length:</a></h2>
|
<h2><a name="method-3">appendBytes:length:</a></h2>
|
||||||
- (void) <b>appendBytes:</b> (const void*)bytes <b>length:</b> (unsigned int)length<br>
|
- (void) <b>appendBytes:</b> (const void*)bytes <b>length:</b> (unsigned int)length;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">appendData:</a></h2>
|
<h2><a name="method-4">appendData:</a></h2>
|
||||||
- (void) <b>appendData:</b> (NSData*)otherData<br>
|
- (void) <b>appendData:</b> (NSData*)otherData;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">increaseLengthBy:</a></h2>
|
<h2><a name="method-5">increaseLengthBy:</a></h2>
|
||||||
- (void) <b>increaseLengthBy:</b> (unsigned int)extraLength<br>
|
- (void) <b>increaseLengthBy:</b> (unsigned int)extraLength;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">initWithCapacity:</a></h2>
|
<h2><a name="method-6">initWithCapacity:</a></h2>
|
||||||
- (id) <b>initWithCapacity:</b> (unsigned int)capacity<br>
|
- (id) <b>initWithCapacity:</b> (unsigned int)capacity;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">initWithLength:</a></h2>
|
<h2><a name="method-7">initWithLength:</a></h2>
|
||||||
- (id) <b>initWithLength:</b> (unsigned int)length<br>
|
- (id) <b>initWithLength:</b> (unsigned int)length;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">mutableBytes</a></h2>
|
<h2><a name="method-8">mutableBytes</a></h2>
|
||||||
- (void*) <b>mutableBytes</b><br>
|
- (void*) <b>mutableBytes</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">replaceBytesInRange:withBytes:</a></h2>
|
<h2><a name="method-9">replaceBytesInRange:withBytes:</a></h2>
|
||||||
- (void) <b>replaceBytesInRange:</b> (NSRange)range <b>withBytes:</b> (const void*)bytes<br>
|
- (void) <b>replaceBytesInRange:</b> (NSRange)range <b>withBytes:</b> (const void*)bytes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">resetBytesInRange:</a></h2>
|
<h2><a name="method-10">resetBytesInRange:</a></h2>
|
||||||
- (void) <b>resetBytesInRange:</b> (NSRange)range<br>
|
- (void) <b>resetBytesInRange:</b> (NSRange)range;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">serializeAlignedBytesLength:</a></h2>
|
<h2><a name="method-11">serializeAlignedBytesLength:</a></h2>
|
||||||
- (void) <b>serializeAlignedBytesLength:</b> (unsigned int)length<br>
|
- (void) <b>serializeAlignedBytesLength:</b> (unsigned int)length;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">serializeDataAt:ofObjCType:context:</a></h2>
|
<h2><a name="method-12">serializeDataAt:ofObjCType:context:</a></h2>
|
||||||
- (void) <b>serializeDataAt:</b> (const void*)data <b>ofObjCType:</b> (const char*)type <b>context:</b> (id<NSObjCTypeSerializationCallBack>)callback<br>
|
- (void) <b>serializeDataAt:</b> (const void*)data <b>ofObjCType:</b> (const char*)type <b>context:</b> (id<NSObjCTypeSerializationCallBack>)callback;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">serializeInt:</a></h2>
|
<h2><a name="method-13">serializeInt:</a></h2>
|
||||||
- (void) <b>serializeInt:</b> (int)value<br>
|
- (void) <b>serializeInt:</b> (int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">serializeInt:atIndex:</a></h2>
|
<h2><a name="method-14">serializeInt:atIndex:</a></h2>
|
||||||
- (void) <b>serializeInt:</b> (int)value <b>atIndex:</b> (unsigned int)index<br>
|
- (void) <b>serializeInt:</b> (int)value <b>atIndex:</b> (unsigned int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">serializeInts:</a></h2>
|
<h2><a name="method-15">serializeInts:</a></h2>
|
||||||
- (void) <b>serializeInts:</b> (int*)intBuffer<br>
|
- (void) <b>serializeInts:</b> (int*)intBuffer;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">serializeInts:count:atIndex:</a></h2>
|
<h2><a name="method-16">serializeInts:count:atIndex:</a></h2>
|
||||||
- (void) <b>serializeInts:</b> (int*)intBuffer <b>count:</b> (unsigned int)numInts <b>atIndex:</b> (unsigned int)index<br>
|
- (void) <b>serializeInts:</b> (int*)intBuffer <b>count:</b> (unsigned int)numInts <b>atIndex:</b> (unsigned int)index;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">setData:</a></h2>
|
<h2><a name="method-17">setData:</a></h2>
|
||||||
- (void) <b>setData:</b> (NSData*)aData<br>
|
- (void) <b>setData:</b> (NSData*)aData;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">setLength:</a></h2>
|
<h2><a name="method-18">setLength:</a></h2>
|
||||||
- (void) <b>setLength:</b> (unsigned int)length<br>
|
- (void) <b>setLength:</b> (unsigned int)length;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableDictionary" prev="NSMutableData.html" next="NSMutableSet.html" up="Base.html">
|
<gsdoc base="NSMutableDictionary" prev="NSMutableData" next="NSMutableSet" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableDictionary</title>
|
<title>NSMutableDictionary</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -35,47 +35,47 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allocWithZone:</a></h2>
|
<h2><a name="method-0">allocWithZone:</a></h2>
|
||||||
+ (id) <b>allocWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>allocWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">dictionaryWithCapacity:</a></h2>
|
<h2><a name="method-1">dictionaryWithCapacity:</a></h2>
|
||||||
+ (id) <b>dictionaryWithCapacity:</b> (unsigned int)numItems<br>
|
+ (id) <b>dictionaryWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">addEntriesFromDictionary:</a></h2>
|
<h2><a name="method-2">addEntriesFromDictionary:</a></h2>
|
||||||
- (void) <b>addEntriesFromDictionary:</b> (NSDictionary*)otherDictionary<br>
|
- (void) <b>addEntriesFromDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">initWithCapacity:</a></h2>
|
<h2><a name="method-3">initWithCapacity:</a></h2>
|
||||||
- (id) <b>initWithCapacity:</b> (unsigned int)numItems<br>
|
- (id) <b>initWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">removeAllObjects</a></h2>
|
<h2><a name="method-4">removeAllObjects</a></h2>
|
||||||
- (void) <b>removeAllObjects</b><br>
|
- (void) <b>removeAllObjects</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">removeObjectForKey:</a></h2>
|
<h2><a name="method-5">removeObjectForKey:</a></h2>
|
||||||
- (void) <b>removeObjectForKey:</b> (id)aKey<br>
|
- (void) <b>removeObjectForKey:</b> (id)aKey;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">removeObjectsForKeys:</a></h2>
|
<h2><a name="method-6">removeObjectsForKeys:</a></h2>
|
||||||
- (void) <b>removeObjectsForKeys:</b> (NSArray*)keyArray<br>
|
- (void) <b>removeObjectsForKeys:</b> (NSArray*)keyArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">setDictionary:</a></h2>
|
<h2><a name="method-7">setDictionary:</a></h2>
|
||||||
- (void) <b>setDictionary:</b> (NSDictionary*)otherDictionary<br>
|
- (void) <b>setDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">setObject:</a></h2>
|
<h2><a name="method-8">setObject:</a></h2>
|
||||||
- (void) <b>setObject:</b> (id)anObject<br>
|
- (void) <b>setObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableSet" prev="NSMutableDictionary.html" next="NSMutableString.html" up="Base.html">
|
<gsdoc base="NSMutableSet" prev="NSMutableDictionary" next="NSMutableString" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableSet</title>
|
<title>NSMutableSet</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -37,57 +37,57 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allocWithZone:</a></h2>
|
<h2><a name="method-0">allocWithZone:</a></h2>
|
||||||
+ (id) <b>allocWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>allocWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">setWithCapacity:</a></h2>
|
<h2><a name="method-1">setWithCapacity:</a></h2>
|
||||||
+ (id) <b>setWithCapacity:</b> (unsigned int)numItems<br>
|
+ (id) <b>setWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">addObject:</a></h2>
|
<h2><a name="method-2">addObject:</a></h2>
|
||||||
- (void) <b>addObject:</b> (id)anObject<br>
|
- (void) <b>addObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">addObjectsFromArray:</a></h2>
|
<h2><a name="method-3">addObjectsFromArray:</a></h2>
|
||||||
- (void) <b>addObjectsFromArray:</b> (NSArray*)anArray<br>
|
- (void) <b>addObjectsFromArray:</b> (NSArray*)anArray;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithCapacity:</a></h2>
|
<h2><a name="method-4">initWithCapacity:</a></h2>
|
||||||
- (id) <b>initWithCapacity:</b> (unsigned int)numItems<br>
|
- (id) <b>initWithCapacity:</b> (unsigned int)numItems;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">intersectSet:</a></h2>
|
<h2><a name="method-5">intersectSet:</a></h2>
|
||||||
- (void) <b>intersectSet:</b> (NSSet*)otherSet<br>
|
- (void) <b>intersectSet:</b> (NSSet*)otherSet;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">minusSet:</a></h2>
|
<h2><a name="method-6">minusSet:</a></h2>
|
||||||
- (void) <b>minusSet:</b> (NSSet*)otherSet<br>
|
- (void) <b>minusSet:</b> (NSSet*)otherSet;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">removeAllObjects</a></h2>
|
<h2><a name="method-7">removeAllObjects</a></h2>
|
||||||
- (void) <b>removeAllObjects</b><br>
|
- (void) <b>removeAllObjects</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">removeObject:</a></h2>
|
<h2><a name="method-8">removeObject:</a></h2>
|
||||||
- (void) <b>removeObject:</b> (id)anObject<br>
|
- (void) <b>removeObject:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">setSet:</a></h2>
|
<h2><a name="method-9">setSet:</a></h2>
|
||||||
- (void) <b>setSet:</b> (NSSet*)otherSet<br>
|
- (void) <b>setSet:</b> (NSSet*)otherSet;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">unionSet:</a></h2>
|
<h2><a name="method-10">unionSet:</a></h2>
|
||||||
- (void) <b>unionSet:</b> (NSSet*)otherSet<br>
|
- (void) <b>unionSet:</b> (NSSet*)otherSet;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSMutableString" prev="NSMutableSet.html" next="NSNotification.html" up="Base.html">
|
<gsdoc base="NSMutableString" prev="NSMutableSet" next="NSNotification" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSMutableString</title>
|
<title>NSMutableString</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -34,42 +34,42 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">stringWithCapacity:</a></h2>
|
<h2><a name="method-0">stringWithCapacity:</a></h2>
|
||||||
+ (NSMutableString*) <b>stringWithCapacity:</b> (unsigned int)capacity<br>
|
+ (NSMutableString*) <b>stringWithCapacity:</b> (unsigned int)capacity;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">appendFormat:</a></h2>
|
<h2><a name="method-1">appendFormat:</a></h2>
|
||||||
- (void) <b>appendFormat:</b> (NSString*)format,<br>
|
- (void) <b>appendFormat:</b> (NSString*)format,;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">appendString:</a></h2>
|
<h2><a name="method-2">appendString:</a></h2>
|
||||||
- (void) <b>appendString:</b> (NSString*)aString<br>
|
- (void) <b>appendString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">deleteCharactersInRange:</a></h2>
|
<h2><a name="method-3">deleteCharactersInRange:</a></h2>
|
||||||
- (void) <b>deleteCharactersInRange:</b> (NSRange)aRange<br>
|
- (void) <b>deleteCharactersInRange:</b> (NSRange)aRange;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithCapacity:</a></h2>
|
<h2><a name="method-4">initWithCapacity:</a></h2>
|
||||||
- (id) <b>initWithCapacity:</b> (unsigned int)capacity<br>
|
- (id) <b>initWithCapacity:</b> (unsigned int)capacity;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">insertString:</a></h2>
|
<h2><a name="method-5">insertString:</a></h2>
|
||||||
- (void) <b>insertString:</b> (NSString*)aString<br>
|
- (void) <b>insertString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">replaceCharactersInRange:withString:</a></h2>
|
<h2><a name="method-6">replaceCharactersInRange:withString:</a></h2>
|
||||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (NSString*)aString<br>
|
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">setString:</a></h2>
|
<h2><a name="method-7">setString:</a></h2>
|
||||||
- (void) <b>setString:</b> (NSString*)aString<br>
|
- (void) <b>setString:</b> (NSString*)aString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSNotification" prev="NSMutableString.html" next="NSNotificationCenter.html" up="Base.html">
|
<gsdoc base="NSNotification" prev="NSMutableString" next="NSNotificationCenter" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSNotification</title>
|
<title>NSNotification</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -31,27 +31,27 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">notificationWithName:object:</a></h2>
|
<h2><a name="method-0">notificationWithName:object:</a></h2>
|
||||||
+ (id) <b>notificationWithName:</b> (NSString*)aName <b>object:</b> (id)anObject<br>
|
+ (id) <b>notificationWithName:</b> (NSString*)aName <b>object:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">notificationWithName:object:userInfo:</a></h2>
|
<h2><a name="method-1">notificationWithName:object:userInfo:</a></h2>
|
||||||
+ (id) <b>notificationWithName:</b> (NSString*)aName <b>object:</b> (id)anObject <b>userInfo:</b> (NSDictionary*)userInfo<br>
|
+ (id) <b>notificationWithName:</b> (NSString*)aName <b>object:</b> (id)anObject <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">name</a></h2>
|
<h2><a name="method-2">name</a></h2>
|
||||||
- (NSString*) <b>name</b><br>
|
- (NSString*) <b>name</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">object</a></h2>
|
<h2><a name="method-3">object</a></h2>
|
||||||
- (id) <b>object</b><br>
|
- (id) <b>object</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">userInfo</a></h2>
|
<h2><a name="method-4">userInfo</a></h2>
|
||||||
- (NSDictionary*) <b>userInfo</b><br>
|
- (NSDictionary*) <b>userInfo</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSNotificationCenter" prev="NSNotification.html" next="NSNotificationQueue.html" up="Base.html">
|
<gsdoc base="NSNotificationCenter" prev="NSNotification" next="NSNotificationQueue" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSNotificationCenter</title>
|
<title>NSNotificationCenter</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -33,37 +33,37 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">defaultCenter</a></h2>
|
<h2><a name="method-0">defaultCenter</a></h2>
|
||||||
+ (NSNotificationCenter*) <b>defaultCenter</b><br>
|
+ (NSNotificationCenter*) <b>defaultCenter</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">addObserver:selector:name:</a></h2>
|
<h2><a name="method-1">addObserver:selector:name:</a></h2>
|
||||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName<br>
|
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">postNotification:</a></h2>
|
<h2><a name="method-2">postNotification:</a></h2>
|
||||||
- (void) <b>postNotification:</b> (NSNotification*)notification<br>
|
- (void) <b>postNotification:</b> (NSNotification*)notification;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">postNotificationName:</a></h2>
|
<h2><a name="method-3">postNotificationName:</a></h2>
|
||||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName<br>
|
- (void) <b>postNotificationName:</b> (NSString*)notificationName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">postNotificationName:object:userInfo:</a></h2>
|
<h2><a name="method-4">postNotificationName:object:userInfo:</a></h2>
|
||||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (id)anObject <b>userInfo:</b> (NSDictionary*)userInfo<br>
|
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (id)anObject <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">removeObserver:</a></h2>
|
<h2><a name="method-5">removeObserver:</a></h2>
|
||||||
- (void) <b>removeObserver:</b> (id)anObserver<br>
|
- (void) <b>removeObserver:</b> (id)anObserver;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">removeObserver:name:object:</a></h2>
|
<h2><a name="method-6">removeObserver:name:object:</a></h2>
|
||||||
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (NSString*)notificationName <b>object:</b> (id)anObject<br>
|
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (NSString*)notificationName <b>object:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSNotificationQueue" prev="NSNotificationCenter.html" next="NSNumber.html" up="Base.html">
|
<gsdoc base="NSNotificationQueue" prev="NSNotificationCenter" next="NSNumber" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSNotificationQueue</title>
|
<title>NSNotificationQueue</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -31,27 +31,27 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">defaultQueue</a></h2>
|
<h2><a name="method-0">defaultQueue</a></h2>
|
||||||
+ (NSNotificationQueue*) <b>defaultQueue</b><br>
|
+ (NSNotificationQueue*) <b>defaultQueue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">dequeueNotificationsMatching:</a></h2>
|
<h2><a name="method-1">dequeueNotificationsMatching:</a></h2>
|
||||||
- (void) <b>dequeueNotificationsMatching:</b> (NSNotification*)notification<br>
|
- (void) <b>dequeueNotificationsMatching:</b> (NSNotification*)notification;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">enqueueNotification:</a></h2>
|
<h2><a name="method-2">enqueueNotification:</a></h2>
|
||||||
- (void) <b>enqueueNotification:</b> (NSNotification*)notification<br>
|
- (void) <b>enqueueNotification:</b> (NSNotification*)notification;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">enqueueNotification:postingStyle:coalesceMask:</a></h2>
|
<h2><a name="method-3">enqueueNotification:postingStyle:coalesceMask:</a></h2>
|
||||||
- (void) <b>enqueueNotification:</b> (NSNotification*)notification <b>postingStyle:</b> (NSPostingStyle)postingStyle <b>coalesceMask:</b> (unsigned int)coalesceMask<br>
|
- (void) <b>enqueueNotification:</b> (NSNotification*)notification <b>postingStyle:</b> (NSPostingStyle)postingStyle <b>coalesceMask:</b> (unsigned int)coalesceMask;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithNotificationCenter:</a></h2>
|
<h2><a name="method-4">initWithNotificationCenter:</a></h2>
|
||||||
- (id) <b>initWithNotificationCenter:</b> (NSNotificationCenter*)notificationCenter<br>
|
- (id) <b>initWithNotificationCenter:</b> (NSNotificationCenter*)notificationCenter;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSNumber" prev="NSNotificationQueue.html" next="NSNumberFormatter.html" up="Base.html">
|
<gsdoc base="NSNumber" prev="NSNotificationQueue" next="NSNumberFormatter" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSNumber</title>
|
<title>NSNumber</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -71,227 +71,227 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">numberWithBool:</a></h2>
|
<h2><a name="method-0">numberWithBool:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithBool:</b> (BOOL)value<br>
|
+ (NSNumber*) <b>numberWithBool:</b> (BOOL)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">numberWithChar:</a></h2>
|
<h2><a name="method-1">numberWithChar:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithChar:</b> (char)value<br>
|
+ (NSNumber*) <b>numberWithChar:</b> (char)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">numberWithDouble:</a></h2>
|
<h2><a name="method-2">numberWithDouble:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithDouble:</b> (double)value<br>
|
+ (NSNumber*) <b>numberWithDouble:</b> (double)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">numberWithFloat:</a></h2>
|
<h2><a name="method-3">numberWithFloat:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithFloat:</b> (float)value<br>
|
+ (NSNumber*) <b>numberWithFloat:</b> (float)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">numberWithInt:</a></h2>
|
<h2><a name="method-4">numberWithInt:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithInt:</b> (int)value<br>
|
+ (NSNumber*) <b>numberWithInt:</b> (int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">numberWithLong:</a></h2>
|
<h2><a name="method-5">numberWithLong:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithLong:</b> (long int)value<br>
|
+ (NSNumber*) <b>numberWithLong:</b> (long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">numberWithLongLong:</a></h2>
|
<h2><a name="method-6">numberWithLongLong:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithLongLong:</b> (long long int)value<br>
|
+ (NSNumber*) <b>numberWithLongLong:</b> (long long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">numberWithShort:</a></h2>
|
<h2><a name="method-7">numberWithShort:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithShort:</b> (short int)value<br>
|
+ (NSNumber*) <b>numberWithShort:</b> (short int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">numberWithUnsignedChar:</a></h2>
|
<h2><a name="method-8">numberWithUnsignedChar:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithUnsignedChar:</b> (unsigned char)value<br>
|
+ (NSNumber*) <b>numberWithUnsignedChar:</b> (unsigned char)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">numberWithUnsignedInt:</a></h2>
|
<h2><a name="method-9">numberWithUnsignedInt:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithUnsignedInt:</b> (unsigned int)value<br>
|
+ (NSNumber*) <b>numberWithUnsignedInt:</b> (unsigned int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">numberWithUnsignedLong:</a></h2>
|
<h2><a name="method-10">numberWithUnsignedLong:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithUnsignedLong:</b> (unsigned long int)value<br>
|
+ (NSNumber*) <b>numberWithUnsignedLong:</b> (unsigned long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">numberWithUnsignedLongLong:</a></h2>
|
<h2><a name="method-11">numberWithUnsignedLongLong:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithUnsignedLongLong:</b> (unsigned long long int)value<br>
|
+ (NSNumber*) <b>numberWithUnsignedLongLong:</b> (unsigned long long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">numberWithUnsignedShort:</a></h2>
|
<h2><a name="method-12">numberWithUnsignedShort:</a></h2>
|
||||||
+ (NSNumber*) <b>numberWithUnsignedShort:</b> (unsigned short int)value<br>
|
+ (NSNumber*) <b>numberWithUnsignedShort:</b> (unsigned short int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">boolValue</a></h2>
|
<h2><a name="method-13">boolValue</a></h2>
|
||||||
- (BOOL) <b>boolValue</b><br>
|
- (BOOL) <b>boolValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">charValue</a></h2>
|
<h2><a name="method-14">charValue</a></h2>
|
||||||
- (char) <b>charValue</b><br>
|
- (char) <b>charValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">compare:</a></h2>
|
<h2><a name="method-15">compare:</a></h2>
|
||||||
- (NSComparisonResult) <b>compare:</b> (NSNumber*)aNumber<br>
|
- (NSComparisonResult) <b>compare:</b> (NSNumber*)aNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">decimalValue</a></h2>
|
<h2><a name="method-16">decimalValue</a></h2>
|
||||||
- (NSDecimal) <b>decimalValue</b><br>
|
- (NSDecimal) <b>decimalValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">description</a></h2>
|
<h2><a name="method-17">description</a></h2>
|
||||||
- (NSString*) <b>description</b><br>
|
- (NSString*) <b>description</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">descriptionWithLocale:</a></h2>
|
<h2><a name="method-18">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">doubleValue</a></h2>
|
<h2><a name="method-19">doubleValue</a></h2>
|
||||||
- (double) <b>doubleValue</b><br>
|
- (double) <b>doubleValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">floatValue</a></h2>
|
<h2><a name="method-20">floatValue</a></h2>
|
||||||
- (float) <b>floatValue</b><br>
|
- (float) <b>floatValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">initWithBool:</a></h2>
|
<h2><a name="method-21">initWithBool:</a></h2>
|
||||||
- (id) <b>initWithBool:</b> (BOOL)value<br>
|
- (id) <b>initWithBool:</b> (BOOL)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">initWithChar:</a></h2>
|
<h2><a name="method-22">initWithChar:</a></h2>
|
||||||
- (id) <b>initWithChar:</b> (char)value<br>
|
- (id) <b>initWithChar:</b> (char)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">initWithDouble:</a></h2>
|
<h2><a name="method-23">initWithDouble:</a></h2>
|
||||||
- (id) <b>initWithDouble:</b> (double)value<br>
|
- (id) <b>initWithDouble:</b> (double)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">initWithFloat:</a></h2>
|
<h2><a name="method-24">initWithFloat:</a></h2>
|
||||||
- (id) <b>initWithFloat:</b> (float)value<br>
|
- (id) <b>initWithFloat:</b> (float)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">initWithInt:</a></h2>
|
<h2><a name="method-25">initWithInt:</a></h2>
|
||||||
- (id) <b>initWithInt:</b> (int)value<br>
|
- (id) <b>initWithInt:</b> (int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">initWithLong:</a></h2>
|
<h2><a name="method-26">initWithLong:</a></h2>
|
||||||
- (id) <b>initWithLong:</b> (long int)value<br>
|
- (id) <b>initWithLong:</b> (long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">initWithLongLong:</a></h2>
|
<h2><a name="method-27">initWithLongLong:</a></h2>
|
||||||
- (id) <b>initWithLongLong:</b> (long long int)value<br>
|
- (id) <b>initWithLongLong:</b> (long long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">initWithShort:</a></h2>
|
<h2><a name="method-28">initWithShort:</a></h2>
|
||||||
- (id) <b>initWithShort:</b> (short int)value<br>
|
- (id) <b>initWithShort:</b> (short int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-29">initWithUnsignedChar:</a></h2>
|
<h2><a name="method-29">initWithUnsignedChar:</a></h2>
|
||||||
- (id) <b>initWithUnsignedChar:</b> (unsigned char)value<br>
|
- (id) <b>initWithUnsignedChar:</b> (unsigned char)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-30">initWithUnsignedInt:</a></h2>
|
<h2><a name="method-30">initWithUnsignedInt:</a></h2>
|
||||||
- (id) <b>initWithUnsignedInt:</b> (unsigned int)value<br>
|
- (id) <b>initWithUnsignedInt:</b> (unsigned int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-31">initWithUnsignedLong:</a></h2>
|
<h2><a name="method-31">initWithUnsignedLong:</a></h2>
|
||||||
- (id) <b>initWithUnsignedLong:</b> (unsigned long int)value<br>
|
- (id) <b>initWithUnsignedLong:</b> (unsigned long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-32">initWithUnsignedLongLong:</a></h2>
|
<h2><a name="method-32">initWithUnsignedLongLong:</a></h2>
|
||||||
- (id) <b>initWithUnsignedLongLong:</b> (unsigned long long int)value<br>
|
- (id) <b>initWithUnsignedLongLong:</b> (unsigned long long int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-33">initWithUnsignedShort:</a></h2>
|
<h2><a name="method-33">initWithUnsignedShort:</a></h2>
|
||||||
- (id) <b>initWithUnsignedShort:</b> (unsigned short int)value<br>
|
- (id) <b>initWithUnsignedShort:</b> (unsigned short int)value;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-34">intValue</a></h2>
|
<h2><a name="method-34">intValue</a></h2>
|
||||||
- (int) <b>intValue</b><br>
|
- (int) <b>intValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-35">isEqualToNumber:</a></h2>
|
<h2><a name="method-35">isEqualToNumber:</a></h2>
|
||||||
- (BOOL) <b>isEqualToNumber:</b> (NSNumber*)aNumber<br>
|
- (BOOL) <b>isEqualToNumber:</b> (NSNumber*)aNumber;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-36">longLongValue</a></h2>
|
<h2><a name="method-36">longLongValue</a></h2>
|
||||||
- (long long int) <b>longLongValue</b><br>
|
- (long long int) <b>longLongValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-37">longValue</a></h2>
|
<h2><a name="method-37">longValue</a></h2>
|
||||||
- (long int) <b>longValue</b><br>
|
- (long int) <b>longValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-38">shortValue</a></h2>
|
<h2><a name="method-38">shortValue</a></h2>
|
||||||
- (short int) <b>shortValue</b><br>
|
- (short int) <b>shortValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-39">stringValue</a></h2>
|
<h2><a name="method-39">stringValue</a></h2>
|
||||||
- (NSString*) <b>stringValue</b><br>
|
- (NSString*) <b>stringValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-40">unsignedCharValue</a></h2>
|
<h2><a name="method-40">unsignedCharValue</a></h2>
|
||||||
- (unsigned char) <b>unsignedCharValue</b><br>
|
- (unsigned char) <b>unsignedCharValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-41">unsignedIntValue</a></h2>
|
<h2><a name="method-41">unsignedIntValue</a></h2>
|
||||||
- (unsigned int) <b>unsignedIntValue</b><br>
|
- (unsigned int) <b>unsignedIntValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-42">unsignedLongLongValue</a></h2>
|
<h2><a name="method-42">unsignedLongLongValue</a></h2>
|
||||||
- (unsigned long long int) <b>unsignedLongLongValue</b><br>
|
- (unsigned long long int) <b>unsignedLongLongValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-43">unsignedLongValue</a></h2>
|
<h2><a name="method-43">unsignedLongValue</a></h2>
|
||||||
- (unsigned long int) <b>unsignedLongValue</b><br>
|
- (unsigned long int) <b>unsignedLongValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-44">unsignedShortValue</a></h2>
|
<h2><a name="method-44">unsignedShortValue</a></h2>
|
||||||
- (unsigned short int) <b>unsignedShortValue</b><br>
|
- (unsigned short int) <b>unsignedShortValue</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSNumberFormatter" prev="NSNumber.html" next="NSObject.html" up="Base.html">
|
<gsdoc base="NSNumberFormatter" prev="NSNumber" next="NSObject" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSNumberFormatter</title>
|
<title>NSNumberFormatter</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -58,162 +58,162 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">allowsFloats</a></h2>
|
<h2><a name="method-0">allowsFloats</a></h2>
|
||||||
- (BOOL) <b>allowsFloats</b><br>
|
- (BOOL) <b>allowsFloats</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">attributedStringForNil</a></h2>
|
<h2><a name="method-1">attributedStringForNil</a></h2>
|
||||||
- (NSAttributedString*) <b>attributedStringForNil</b><br>
|
- (NSAttributedString*) <b>attributedStringForNil</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">attributedStringForNotANumber</a></h2>
|
<h2><a name="method-2">attributedStringForNotANumber</a></h2>
|
||||||
- (NSAttributedString*) <b>attributedStringForNotANumber</b><br>
|
- (NSAttributedString*) <b>attributedStringForNotANumber</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">attributedStringForZero</a></h2>
|
<h2><a name="method-3">attributedStringForZero</a></h2>
|
||||||
- (NSAttributedString*) <b>attributedStringForZero</b><br>
|
- (NSAttributedString*) <b>attributedStringForZero</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">decimalSeparator</a></h2>
|
<h2><a name="method-4">decimalSeparator</a></h2>
|
||||||
- (NSString*) <b>decimalSeparator</b><br>
|
- (NSString*) <b>decimalSeparator</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">format</a></h2>
|
<h2><a name="method-5">format</a></h2>
|
||||||
- (NSString*) <b>format</b><br>
|
- (NSString*) <b>format</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">hasThousandSeparators</a></h2>
|
<h2><a name="method-6">hasThousandSeparators</a></h2>
|
||||||
- (BOOL) <b>hasThousandSeparators</b><br>
|
- (BOOL) <b>hasThousandSeparators</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">localizesFormat</a></h2>
|
<h2><a name="method-7">localizesFormat</a></h2>
|
||||||
- (BOOL) <b>localizesFormat</b><br>
|
- (BOOL) <b>localizesFormat</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">maximum</a></h2>
|
<h2><a name="method-8">maximum</a></h2>
|
||||||
- (NSDecimalNumber*) <b>maximum</b><br>
|
- (NSDecimalNumber*) <b>maximum</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">minimum</a></h2>
|
<h2><a name="method-9">minimum</a></h2>
|
||||||
- (NSDecimalNumber*) <b>minimum</b><br>
|
- (NSDecimalNumber*) <b>minimum</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">negativeFormat</a></h2>
|
<h2><a name="method-10">negativeFormat</a></h2>
|
||||||
- (NSString*) <b>negativeFormat</b><br>
|
- (NSString*) <b>negativeFormat</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">positiveFormat</a></h2>
|
<h2><a name="method-11">positiveFormat</a></h2>
|
||||||
- (NSString*) <b>positiveFormat</b><br>
|
- (NSString*) <b>positiveFormat</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">roundingBehavior</a></h2>
|
<h2><a name="method-12">roundingBehavior</a></h2>
|
||||||
- (NSDecimalNumberHandler*) <b>roundingBehavior</b><br>
|
- (NSDecimalNumberHandler*) <b>roundingBehavior</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">setAllowsFloats:</a></h2>
|
<h2><a name="method-13">setAllowsFloats:</a></h2>
|
||||||
- (void) <b>setAllowsFloats:</b> (BOOL)flag<br>
|
- (void) <b>setAllowsFloats:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">setAttributedStringForNil:</a></h2>
|
<h2><a name="method-14">setAttributedStringForNil:</a></h2>
|
||||||
- (void) <b>setAttributedStringForNil:</b> (NSAttributedString*)newAttributedString<br>
|
- (void) <b>setAttributedStringForNil:</b> (NSAttributedString*)newAttributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">setAttributedStringForNotANumber:</a></h2>
|
<h2><a name="method-15">setAttributedStringForNotANumber:</a></h2>
|
||||||
- (void) <b>setAttributedStringForNotANumber:</b> (NSAttributedString*)newAttributedString<br>
|
- (void) <b>setAttributedStringForNotANumber:</b> (NSAttributedString*)newAttributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">setAttributedStringForZero:</a></h2>
|
<h2><a name="method-16">setAttributedStringForZero:</a></h2>
|
||||||
- (void) <b>setAttributedStringForZero:</b> (NSAttributedString*)newAttributedString<br>
|
- (void) <b>setAttributedStringForZero:</b> (NSAttributedString*)newAttributedString;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">setDecimalSeparator:</a></h2>
|
<h2><a name="method-17">setDecimalSeparator:</a></h2>
|
||||||
- (void) <b>setDecimalSeparator:</b> (NSString*)newSeparator<br>
|
- (void) <b>setDecimalSeparator:</b> (NSString*)newSeparator;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">setFormat:</a></h2>
|
<h2><a name="method-18">setFormat:</a></h2>
|
||||||
- (void) <b>setFormat:</b> (NSString*)aFormat<br>
|
- (void) <b>setFormat:</b> (NSString*)aFormat;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">setHasThousandSeparators:</a></h2>
|
<h2><a name="method-19">setHasThousandSeparators:</a></h2>
|
||||||
- (void) <b>setHasThousandSeparators:</b> (BOOL)flag<br>
|
- (void) <b>setHasThousandSeparators:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">setLocalizesFormat:</a></h2>
|
<h2><a name="method-20">setLocalizesFormat:</a></h2>
|
||||||
- (void) <b>setLocalizesFormat:</b> (BOOL)flag<br>
|
- (void) <b>setLocalizesFormat:</b> (BOOL)flag;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">setMaximum:</a></h2>
|
<h2><a name="method-21">setMaximum:</a></h2>
|
||||||
- (void) <b>setMaximum:</b> (NSDecimalNumber*)aMaximum<br>
|
- (void) <b>setMaximum:</b> (NSDecimalNumber*)aMaximum;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">setMinimum:</a></h2>
|
<h2><a name="method-22">setMinimum:</a></h2>
|
||||||
- (void) <b>setMinimum:</b> (NSDecimalNumber*)aMinimum<br>
|
- (void) <b>setMinimum:</b> (NSDecimalNumber*)aMinimum;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">setNegativeFormat:</a></h2>
|
<h2><a name="method-23">setNegativeFormat:</a></h2>
|
||||||
- (void) <b>setNegativeFormat:</b> (NSString*)aFormat<br>
|
- (void) <b>setNegativeFormat:</b> (NSString*)aFormat;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">setPositiveFormat:</a></h2>
|
<h2><a name="method-24">setPositiveFormat:</a></h2>
|
||||||
- (void) <b>setPositiveFormat:</b> (NSString*)aFormat<br>
|
- (void) <b>setPositiveFormat:</b> (NSString*)aFormat;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">setRoundingBehavior:</a></h2>
|
<h2><a name="method-25">setRoundingBehavior:</a></h2>
|
||||||
- (void) <b>setRoundingBehavior:</b> (NSDecimalNumberHandler*)newRoundingBehavior<br>
|
- (void) <b>setRoundingBehavior:</b> (NSDecimalNumberHandler*)newRoundingBehavior;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">setTextAttributesForNegativeValues:</a></h2>
|
<h2><a name="method-26">setTextAttributesForNegativeValues:</a></h2>
|
||||||
- (void) <b>setTextAttributesForNegativeValues:</b> (NSDictionary*)newAttributes<br>
|
- (void) <b>setTextAttributesForNegativeValues:</b> (NSDictionary*)newAttributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">setTextAttributesForPositiveValues:</a></h2>
|
<h2><a name="method-27">setTextAttributesForPositiveValues:</a></h2>
|
||||||
- (void) <b>setTextAttributesForPositiveValues:</b> (NSDictionary*)newAttributes<br>
|
- (void) <b>setTextAttributesForPositiveValues:</b> (NSDictionary*)newAttributes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">setThousandSeparator:</a></h2>
|
<h2><a name="method-28">setThousandSeparator:</a></h2>
|
||||||
- (void) <b>setThousandSeparator:</b> (NSString*)newSeparator<br>
|
- (void) <b>setThousandSeparator:</b> (NSString*)newSeparator;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-29">textAttributesForNegativeValues</a></h2>
|
<h2><a name="method-29">textAttributesForNegativeValues</a></h2>
|
||||||
- (NSDictionary*) <b>textAttributesForNegativeValues</b><br>
|
- (NSDictionary*) <b>textAttributesForNegativeValues</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-30">textAttributesForPositiveValues</a></h2>
|
<h2><a name="method-30">textAttributesForPositiveValues</a></h2>
|
||||||
- (NSDictionary*) <b>textAttributesForPositiveValues</b><br>
|
- (NSDictionary*) <b>textAttributesForPositiveValues</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-31">thousandSeparator</a></h2>
|
<h2><a name="method-31">thousandSeparator</a></h2>
|
||||||
- (NSString*) <b>thousandSeparator</b><br>
|
- (NSString*) <b>thousandSeparator</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSObject" prev="NSNumberFormatter.html" next="NSPort.html" up="Base.html">
|
<gsdoc base="NSObject" prev="NSNumberFormatter" next="NSPort" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSObject</title>
|
<title>NSObject</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -70,37 +70,37 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">alloc</a></h2>
|
<h2><a name="method-0">alloc</a></h2>
|
||||||
+ (id) <b>alloc</b><br>
|
+ (id) <b>alloc</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">allocWithZone:</a></h2>
|
<h2><a name="method-1">allocWithZone:</a></h2>
|
||||||
+ (id) <b>allocWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>allocWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">cancelPreviousPerformRequestsWithTarget:selector:</a></h2>
|
<h2><a name="method-2">cancelPreviousPerformRequestsWithTarget:selector:</a></h2>
|
||||||
+ (void) <b>cancelPreviousPerformRequestsWithTarget:</b> (id)aTarget <b>selector:</b> (SEL)aSelector<br>
|
+ (void) <b>cancelPreviousPerformRequestsWithTarget:</b> (id)aTarget <b>selector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">class</a></h2>
|
<h2><a name="method-3">class</a></h2>
|
||||||
+ (Class) <b>class</b><br>
|
+ (Class) <b>class</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">conformsToProtocol:</a></h2>
|
<h2><a name="method-4">conformsToProtocol:</a></h2>
|
||||||
+ (BOOL) <b>conformsToProtocol:</b> (Protocol*)aProtocol<br>
|
+ (BOOL) <b>conformsToProtocol:</b> (Protocol*)aProtocol;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">copyWithZone:</a></h2>
|
<h2><a name="method-5">copyWithZone:</a></h2>
|
||||||
+ (id) <b>copyWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>copyWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">description</a></h2>
|
<h2><a name="method-6">description</a></h2>
|
||||||
+ (NSString*) <b>description</b><br>
|
+ (NSString*) <b>description</b>;<br>
|
||||||
|
|
||||||
The <code>description</code> factory method describes the class
|
The <code>description</code> factory method describes the class
|
||||||
of the receiver. In the default GNUstep implementation, this
|
of the receiver. In the default GNUstep implementation, this
|
||||||
|
@ -108,7 +108,7 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">descriptionWithLocale:</a></h2>
|
<h2><a name="method-7">descriptionWithLocale:</a></h2>
|
||||||
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale<br>
|
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale;<br>
|
||||||
Standards: GNUstep<br>
|
Standards: GNUstep<br>
|
||||||
|
|
||||||
The default (NSOBject) implementation of this method simply calls
|
The default (NSOBject) implementation of this method simply calls
|
||||||
|
@ -117,7 +117,7 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">descriptionWithLocale:indent:</a></h2>
|
<h2><a name="method-8">descriptionWithLocale:indent:</a></h2>
|
||||||
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level<br>
|
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level;<br>
|
||||||
Standards: GNUstep<br>
|
Standards: GNUstep<br>
|
||||||
|
|
||||||
The default (NSObject) implementation of this method simply calls
|
The default (NSObject) implementation of this method simply calls
|
||||||
|
@ -126,7 +126,7 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">descriptionWithLocale:indent:to:</a></h2>
|
<h2><a name="method-9">descriptionWithLocale:indent:to:</a></h2>
|
||||||
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output<br>
|
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output;<br>
|
||||||
Standards: GNUstep<br>
|
Standards: GNUstep<br>
|
||||||
|
|
||||||
The default (NSObject) implementation of this method simply calls
|
The default (NSObject) implementation of this method simply calls
|
||||||
|
@ -135,97 +135,97 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">initialize</a></h2>
|
<h2><a name="method-10">initialize</a></h2>
|
||||||
+ (void) <b>initialize</b><br>
|
+ (void) <b>initialize</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">instanceMethodForSelector:</a></h2>
|
<h2><a name="method-11">instanceMethodForSelector:</a></h2>
|
||||||
+ (IMP) <b>instanceMethodForSelector:</b> (SEL)aSelector<br>
|
+ (IMP) <b>instanceMethodForSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">instanceMethodSignatureForSelector:</a></h2>
|
<h2><a name="method-12">instanceMethodSignatureForSelector:</a></h2>
|
||||||
+ (NSMethodSignature*) <b>instanceMethodSignatureForSelector:</b> (SEL)aSelector<br>
|
+ (NSMethodSignature*) <b>instanceMethodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">instancesRespondToSelector:</a></h2>
|
<h2><a name="method-13">instancesRespondToSelector:</a></h2>
|
||||||
+ (BOOL) <b>instancesRespondToSelector:</b> (SEL)aSelector<br>
|
+ (BOOL) <b>instancesRespondToSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-14">load</a></h2>
|
<h2><a name="method-14">load</a></h2>
|
||||||
+ (void) <b>load</b><br>
|
+ (void) <b>load</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-15">mutableCopyWithZone:</a></h2>
|
<h2><a name="method-15">mutableCopyWithZone:</a></h2>
|
||||||
+ (id) <b>mutableCopyWithZone:</b> (NSZone*)zone<br>
|
+ (id) <b>mutableCopyWithZone:</b> (NSZone*)zone;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-16">new</a></h2>
|
<h2><a name="method-16">new</a></h2>
|
||||||
+ (id) <b>new</b><br>
|
+ (id) <b>new</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-17">poseAsClass:</a></h2>
|
<h2><a name="method-17">poseAsClass:</a></h2>
|
||||||
+ (void) <b>poseAsClass:</b> (Class)aClass<br>
|
+ (void) <b>poseAsClass:</b> (Class)aClass;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-18">setVersion:</a></h2>
|
<h2><a name="method-18">setVersion:</a></h2>
|
||||||
+ (void) <b>setVersion:</b> (int)aVersion<br>
|
+ (void) <b>setVersion:</b> (int)aVersion;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-19">superclass</a></h2>
|
<h2><a name="method-19">superclass</a></h2>
|
||||||
+ (Class) <b>superclass</b><br>
|
+ (Class) <b>superclass</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-20">version</a></h2>
|
<h2><a name="method-20">version</a></h2>
|
||||||
+ (int) <b>version</b><br>
|
+ (int) <b>version</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-21">awakeAfterUsingCoder:</a></h2>
|
<h2><a name="method-21">awakeAfterUsingCoder:</a></h2>
|
||||||
- (id) <b>awakeAfterUsingCoder:</b> (NSCoder*)aDecoder<br>
|
- (id) <b>awakeAfterUsingCoder:</b> (NSCoder*)aDecoder;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-22">classForArchiver</a></h2>
|
<h2><a name="method-22">classForArchiver</a></h2>
|
||||||
- (Class) <b>classForArchiver</b><br>
|
- (Class) <b>classForArchiver</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-23">classForCoder</a></h2>
|
<h2><a name="method-23">classForCoder</a></h2>
|
||||||
- (Class) <b>classForCoder</b><br>
|
- (Class) <b>classForCoder</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-24">classForPortCoder</a></h2>
|
<h2><a name="method-24">classForPortCoder</a></h2>
|
||||||
- (Class) <b>classForPortCoder</b><br>
|
- (Class) <b>classForPortCoder</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-25">connection:handleRequest:</a></h2>
|
<h2><a name="method-25">connection:handleRequest:</a></h2>
|
||||||
- (BOOL) <b>connection:</b> (NSConnection*)connection <b>handleRequest:</b> (NSDistantObjectRequest*)doreq<br>
|
- (BOOL) <b>connection:</b> (NSConnection*)connection <b>handleRequest:</b> (NSDistantObjectRequest*)doreq;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-26">copy</a></h2>
|
<h2><a name="method-26">copy</a></h2>
|
||||||
- (id) <b>copy</b><br>
|
- (id) <b>copy</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-27">dealloc</a></h2>
|
<h2><a name="method-27">dealloc</a></h2>
|
||||||
- (void) <b>dealloc</b><br>
|
- (void) <b>dealloc</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-28">description</a></h2>
|
<h2><a name="method-28">description</a></h2>
|
||||||
- (NSString*) <b>description</b><br>
|
- (NSString*) <b>description</b>;<br>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
|
@ -245,7 +245,7 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-29">descriptionWithLocale:</a></h2>
|
<h2><a name="method-29">descriptionWithLocale:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale;<br>
|
||||||
Standards: GNUstep<br>
|
Standards: GNUstep<br>
|
||||||
|
|
||||||
The default (NSOBject) implementation of this method simply calls
|
The default (NSOBject) implementation of this method simply calls
|
||||||
|
@ -254,7 +254,7 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-30">descriptionWithLocale:indent:</a></h2>
|
<h2><a name="method-30">descriptionWithLocale:indent:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level;<br>
|
||||||
Standards: GNUstep<br>
|
Standards: GNUstep<br>
|
||||||
|
|
||||||
The default (NSObject) implementation of this method simply calls
|
The default (NSObject) implementation of this method simply calls
|
||||||
|
@ -263,7 +263,7 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-31">descriptionWithLocale:indent:to:</a></h2>
|
<h2><a name="method-31">descriptionWithLocale:indent:to:</a></h2>
|
||||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output<br>
|
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output;<br>
|
||||||
Standards: GNUstep<br>
|
Standards: GNUstep<br>
|
||||||
|
|
||||||
The default (NSObject) implementation of this method simply calls
|
The default (NSObject) implementation of this method simply calls
|
||||||
|
@ -279,67 +279,67 @@ Standards: GNUstep<br>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-32">doesNotRecognizeSelector:</a></h2>
|
<h2><a name="method-32">doesNotRecognizeSelector:</a></h2>
|
||||||
- (void) <b>doesNotRecognizeSelector:</b> (SEL)aSelector<br>
|
- (void) <b>doesNotRecognizeSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-33">forwardInvocation:</a></h2>
|
<h2><a name="method-33">forwardInvocation:</a></h2>
|
||||||
- (void) <b>forwardInvocation:</b> (NSInvocation*)anInvocation<br>
|
- (void) <b>forwardInvocation:</b> (NSInvocation*)anInvocation;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-34">hash</a></h2>
|
<h2><a name="method-34">hash</a></h2>
|
||||||
- (unsigned int) <b>hash</b><br>
|
- (unsigned int) <b>hash</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-35">init</a></h2>
|
<h2><a name="method-35">init</a></h2>
|
||||||
- (id) <b>init</b><br>
|
- (id) <b>init</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-36">isEqual:</a></h2>
|
<h2><a name="method-36">isEqual:</a></h2>
|
||||||
- (BOOL) <b>isEqual:</b> (id)anObject<br>
|
- (BOOL) <b>isEqual:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-37">methodForSelector:</a></h2>
|
<h2><a name="method-37">methodForSelector:</a></h2>
|
||||||
- (IMP) <b>methodForSelector:</b> (SEL)aSelector<br>
|
- (IMP) <b>methodForSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-38">methodSignatureForSelector:</a></h2>
|
<h2><a name="method-38">methodSignatureForSelector:</a></h2>
|
||||||
- (NSMethodSignature*) <b>methodSignatureForSelector:</b> (SEL)aSelector<br>
|
- (NSMethodSignature*) <b>methodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-39">mutableCopy</a></h2>
|
<h2><a name="method-39">mutableCopy</a></h2>
|
||||||
- (id) <b>mutableCopy</b><br>
|
- (id) <b>mutableCopy</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-40">performSelector:withObject:</a></h2>
|
<h2><a name="method-40">performSelector:withObject:</a></h2>
|
||||||
- (void) <b>performSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anArgument<br>
|
- (void) <b>performSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anArgument;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-41">performSelector:withObject:afterDelay:inModes:</a></h2>
|
<h2><a name="method-41">performSelector:withObject:afterDelay:inModes:</a></h2>
|
||||||
- (void) <b>performSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anArgument <b>afterDelay:</b> (NSTimeInterval)delay <b>inModes:</b> (NSArray*)modes<br>
|
- (void) <b>performSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anArgument <b>afterDelay:</b> (NSTimeInterval)delay <b>inModes:</b> (NSArray*)modes;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-42">replacementObjectForArchiver:</a></h2>
|
<h2><a name="method-42">replacementObjectForArchiver:</a></h2>
|
||||||
- (id) <b>replacementObjectForArchiver:</b> (NSArchiver*)anArchiver<br>
|
- (id) <b>replacementObjectForArchiver:</b> (NSArchiver*)anArchiver;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-43">replacementObjectForCoder:</a></h2>
|
<h2><a name="method-43">replacementObjectForCoder:</a></h2>
|
||||||
- (id) <b>replacementObjectForCoder:</b> (NSCoder*)aCoder<br>
|
- (id) <b>replacementObjectForCoder:</b> (NSCoder*)aCoder;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-44">replacementObjectForPortCoder:</a></h2>
|
<h2><a name="method-44">replacementObjectForPortCoder:</a></h2>
|
||||||
- (id) <b>replacementObjectForPortCoder:</b> (NSPortCoder*)aCoder<br>
|
- (id) <b>replacementObjectForPortCoder:</b> (NSPortCoder*)aCoder;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSPort" prev="NSObject.html" next="NSPortCoder.html" up="Base.html">
|
<gsdoc base="NSPort" prev="NSObject" next="NSPortCoder" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSPort</title>
|
<title>NSPort</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -40,72 +40,72 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">port</a></h2>
|
<h2><a name="method-0">port</a></h2>
|
||||||
+ (NSPort*) <b>port</b><br>
|
+ (NSPort*) <b>port</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">portWithMachPort:</a></h2>
|
<h2><a name="method-1">portWithMachPort:</a></h2>
|
||||||
+ (NSPort*) <b>portWithMachPort:</b> (int)machPort<br>
|
+ (NSPort*) <b>portWithMachPort:</b> (int)machPort;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">addConnection:toRunLoop:forMode:</a></h2>
|
<h2><a name="method-2">addConnection:toRunLoop:forMode:</a></h2>
|
||||||
- (void) <b>addConnection:</b> (NSConnection*)connection <b>toRunLoop:</b> (NSRunLoop*)runLoop <b>forMode:</b> (NSString*)mode<br>
|
- (void) <b>addConnection:</b> (NSConnection*)connection <b>toRunLoop:</b> (NSRunLoop*)runLoop <b>forMode:</b> (NSString*)mode;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">delegate</a></h2>
|
<h2><a name="method-3">delegate</a></h2>
|
||||||
- (id) <b>delegate</b><br>
|
- (id) <b>delegate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">initWithMachPort:</a></h2>
|
<h2><a name="method-4">initWithMachPort:</a></h2>
|
||||||
- (id) <b>initWithMachPort:</b> (int)machPort<br>
|
- (id) <b>initWithMachPort:</b> (int)machPort;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">invalidate</a></h2>
|
<h2><a name="method-5">invalidate</a></h2>
|
||||||
- (void) <b>invalidate</b><br>
|
- (void) <b>invalidate</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">isValid</a></h2>
|
<h2><a name="method-6">isValid</a></h2>
|
||||||
- (BOOL) <b>isValid</b><br>
|
- (BOOL) <b>isValid</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">machPort</a></h2>
|
<h2><a name="method-7">machPort</a></h2>
|
||||||
- (int) <b>machPort</b><br>
|
- (int) <b>machPort</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-8">removeConnection:fromRunLoop:</a></h2>
|
<h2><a name="method-8">removeConnection:fromRunLoop:</a></h2>
|
||||||
- (void) <b>removeConnection:</b> (NSConnection*)connection <b>fromRunLoop:</b> (NSRunLoop*)runLoop<br>
|
- (void) <b>removeConnection:</b> (NSConnection*)connection <b>fromRunLoop:</b> (NSRunLoop*)runLoop;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-9">reservedSpaceLength</a></h2>
|
<h2><a name="method-9">reservedSpaceLength</a></h2>
|
||||||
- (unsigned int) <b>reservedSpaceLength</b><br>
|
- (unsigned int) <b>reservedSpaceLength</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-10">setDelegate:</a></h2>
|
<h2><a name="method-10">setDelegate:</a></h2>
|
||||||
- (void) <b>setDelegate:</b> (id)anObject<br>
|
- (void) <b>setDelegate:</b> (id)anObject;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-11">handleMachMessage:</a></h2>
|
<h2><a name="method-11">handleMachMessage:</a></h2>
|
||||||
- (void) <b>handleMachMessage:</b> (void*)machMessage<br>
|
- (void) <b>handleMachMessage:</b> (void*)machMessage;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-12">handlePortMessage:</a></h2>
|
<h2><a name="method-12">handlePortMessage:</a></h2>
|
||||||
- (void) <b>handlePortMessage:</b> (NSPortMessage*)portMessage<br>
|
- (void) <b>handlePortMessage:</b> (NSPortMessage*)portMessage;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-13">limitDateForMode:</a></h2>
|
<h2><a name="method-13">limitDateForMode:</a></h2>
|
||||||
- (NSDate*) <b>limitDateForMode:</b> (NSString*)mode<br>
|
- (NSDate*) <b>limitDateForMode:</b> (NSString*)mode;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSPortCoder" prev="NSPort.html" next="NSPortMessage.html" up="Base.html">
|
<gsdoc base="NSPortCoder" prev="NSPort" next="NSPortMessage" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSPortCoder</title>
|
<title>NSPortCoder</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -33,37 +33,37 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">portCoderWithReceivePort:sendPort:components:</a></h2>
|
<h2><a name="method-0">portCoderWithReceivePort:sendPort:components:</a></h2>
|
||||||
+ (id) <b>portCoderWithReceivePort:</b> (NSPort*)receivePort <b>sendPort:</b> (NSPort*)sendPort <b>components:</b> (NSArray)components<br>
|
+ (id) <b>portCoderWithReceivePort:</b> (NSPort*)receivePort <b>sendPort:</b> (NSPort*)sendPort <b>components:</b> (NSArray)components;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">connection</a></h2>
|
<h2><a name="method-1">connection</a></h2>
|
||||||
- (NSConnection*) <b>connection</b><br>
|
- (NSConnection*) <b>connection</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">decodePortObject</a></h2>
|
<h2><a name="method-2">decodePortObject</a></h2>
|
||||||
- (NSPort*) <b>decodePortObject</b><br>
|
- (NSPort*) <b>decodePortObject</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">dispatch</a></h2>
|
<h2><a name="method-3">dispatch</a></h2>
|
||||||
- (void) <b>dispatch</b><br>
|
- (void) <b>dispatch</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">encodePortObject:</a></h2>
|
<h2><a name="method-4">encodePortObject:</a></h2>
|
||||||
- (void) <b>encodePortObject:</b> (NSPort*)aPort<br>
|
- (void) <b>encodePortObject:</b> (NSPort*)aPort;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">isBycopy</a></h2>
|
<h2><a name="method-5">isBycopy</a></h2>
|
||||||
- (BOOL) <b>isBycopy</b><br>
|
- (BOOL) <b>isBycopy</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">isByref</a></h2>
|
<h2><a name="method-6">isByref</a></h2>
|
||||||
- (BOOL) <b>isByref</b><br>
|
- (BOOL) <b>isByref</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSPortMessage" prev="NSPortCoder.html" next="NSPortNameServer.html" up="Base.html">
|
<gsdoc base="NSPortMessage" prev="NSPortCoder" next="NSPortNameServer" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSPortMessage</title>
|
<title>NSPortMessage</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -34,42 +34,42 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">components</a></h2>
|
<h2><a name="method-0">components</a></h2>
|
||||||
- (NSArray*) <b>components</b><br>
|
- (NSArray*) <b>components</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">initWithMachMessage:</a></h2>
|
<h2><a name="method-1">initWithMachMessage:</a></h2>
|
||||||
- (id) <b>initWithMachMessage:</b> (void*)buffer<br>
|
- (id) <b>initWithMachMessage:</b> (void*)buffer;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">initWithSendPort:receivePort:</a></h2>
|
<h2><a name="method-2">initWithSendPort:receivePort:</a></h2>
|
||||||
- (id) <b>initWithSendPort:</b> (NSPort*)sendPort <b>receivePort:</b> (NSPort*)receivePort<br>
|
- (id) <b>initWithSendPort:</b> (NSPort*)sendPort <b>receivePort:</b> (NSPort*)receivePort;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">msgid</a></h2>
|
<h2><a name="method-3">msgid</a></h2>
|
||||||
- (unsigned int) <b>msgid</b><br>
|
- (unsigned int) <b>msgid</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">receivePort</a></h2>
|
<h2><a name="method-4">receivePort</a></h2>
|
||||||
- (NSPort*) <b>receivePort</b><br>
|
- (NSPort*) <b>receivePort</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-5">sendBeforeDate:</a></h2>
|
<h2><a name="method-5">sendBeforeDate:</a></h2>
|
||||||
- (BOOL) <b>sendBeforeDate:</b> (NSDate*)aDate<br>
|
- (BOOL) <b>sendBeforeDate:</b> (NSDate*)aDate;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-6">sendPort</a></h2>
|
<h2><a name="method-6">sendPort</a></h2>
|
||||||
- (NSPort*) <b>sendPort</b><br>
|
- (NSPort*) <b>sendPort</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-7">setMsgid:</a></h2>
|
<h2><a name="method-7">setMsgid:</a></h2>
|
||||||
- (void) <b>setMsgid:</b> (unsigned int)msgid<br>
|
- (void) <b>setMsgid:</b> (unsigned int)msgid;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.5//EN" "http://www.gnustep.org/gsdoc-0_6_5.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 0.6.6//EN" "http://www.gnustep.org/gsdoc-0_6_6.xml">
|
||||||
<gsdoc base="NSPortNameServer" prev="NSPortMessage.html" next="NSProcessInfo.html" up="Base.html">
|
<gsdoc base="NSPortNameServer" prev="NSPortMessage" next="NSProcessInfo" up="Base">
|
||||||
<head>
|
<head>
|
||||||
<title>NSPortNameServer</title>
|
<title>NSPortNameServer</title>
|
||||||
<author name="Richard Frith-Macdonald">
|
<author name="Richard Frith-Macdonald">
|
||||||
|
|
|
@ -31,27 +31,27 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-0">defaultPortNameServer</a></h2>
|
<h2><a name="method-0">defaultPortNameServer</a></h2>
|
||||||
+ (id) <b>defaultPortNameServer</b><br>
|
+ (id) <b>defaultPortNameServer</b>;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-1">portForName:</a></h2>
|
<h2><a name="method-1">portForName:</a></h2>
|
||||||
- (NSPort*) <b>portForName:</b> (NSString*)portName<br>
|
- (NSPort*) <b>portForName:</b> (NSString*)portName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-2">portForName:</a></h2>
|
<h2><a name="method-2">portForName:</a></h2>
|
||||||
- (NSPort*) <b>portForName:</b> (NSString*)portName<br>
|
- (NSPort*) <b>portForName:</b> (NSString*)portName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-3">registerPort:forName:</a></h2>
|
<h2><a name="method-3">registerPort:forName:</a></h2>
|
||||||
- (BOOL) <b>registerPort:</b> (NSPort*)aPort <b>forName:</b> (NSString*)portName<br>
|
- (BOOL) <b>registerPort:</b> (NSPort*)aPort <b>forName:</b> (NSString*)portName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<h2><a name="method-4">removePortForName:</a></h2>
|
<h2><a name="method-4">removePortForName:</a></h2>
|
||||||
- (void) <b>removePortForName:</b> (NSString*)portName<br>
|
- (void) <b>removePortForName:</b> (NSString*)portName;<br>
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue