diff --git a/ChangeLog b/ChangeLog index f7e4105a7..fcabea5db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2000-09-15 Richard Frith-Macdonald + + * Source/GSXML.m: made method names more consistent. + * Headers/gnustep/base/GSXML.h: made method names more consistent. + * Documentation/gsdoc/GNUmakefile: Added GSXML files + * Documentation/gsdoc/base.gsdoc: Added link to GSXML + * Documentation/gsdoc/GSXML.gsdoc: Overview of XML parsing. + * Documentation/gsdoc/GSSAXHandler.gsdoc: event parsing handler class. + * Documentation/gsdoc/GSXMLAttribute.gsdoc: xml attribute wrapper. + * Documentation/gsdoc/GSXMLDocument.gsdoc: xml document wrapper. + * Documentation/gsdoc/GSXMLNamespace.gsdoc: xml namespace wrapper. + * Documentation/gsdoc/GSXMLNode.gsdoc: xml node wrapper. + * Documentation/gsdoc/GSXMLParser.gsdoc: xml parser wrapper. + 2000-09-15 Richard Frith-Macdonald * Source/UnixFileHandle.m: conform to GCFinalization protocol. diff --git a/Documentation/gsdoc/Base.gsdoc b/Documentation/gsdoc/Base.gsdoc index 854da131a..5cf192161 100644 --- a/Documentation/gsdoc/Base.gsdoc +++ b/Documentation/gsdoc/Base.gsdoc @@ -82,7 +82,7 @@
- The classes + The Foundation classes NSArchiver NSArray @@ -154,6 +154,12 @@ NSValue
+
+ The GNUstep extension classes + + GSXML + +
diff --git a/Documentation/gsdoc/Base.html b/Documentation/gsdoc/Base.html index 55a6f7f95..4a66d122b 100644 --- a/Documentation/gsdoc/Base.html +++ b/Documentation/gsdoc/Base.html @@ -78,7 +78,7 @@ for parsing those strings should cope with both cases anyway. -

The classes

+

The Foundation classes

+

The GNUstep extension classes

+ diff --git a/Documentation/gsdoc/GNUmakefile b/Documentation/gsdoc/GNUmakefile index e7c9fda44..5cce91547 100644 --- a/Documentation/gsdoc/GNUmakefile +++ b/Documentation/gsdoc/GNUmakefile @@ -98,7 +98,14 @@ Base_GSDOC_FILES = Base.gsdoc \ NSUnarchiver.gsdoc \ NSUndoManager.gsdoc \ NSUserDefaults.gsdoc \ - NSValue.gsdoc + NSValue.gsdoc \ + GSXML.gsdoc \ + GSSAXHandler.gsdoc \ + GSXMLAttribute.gsdoc \ + GSXMLDocument.gsdoc \ + GSXMLNamespace.gsdoc \ + GSXMLNode.gsdoc \ + GSXMLParser.gsdoc -include Makefile.preamble diff --git a/Documentation/gsdoc/GSSAXHandler.gsdoc b/Documentation/gsdoc/GSSAXHandler.gsdoc new file mode 100644 index 000000000..028dad7fd --- /dev/null +++ b/Documentation/gsdoc/GSSAXHandler.gsdoc @@ -0,0 +1,360 @@ + + + + + GSSAXHandler + + + + + + + 0.2 + 15 september, 2000 + + + + + GSSAXHandler + + GSXML.h + +

XML SAX Handler.

+

SAX is a callback-based interface to the XML parser.

+

+ You can debug the SAX behaviour by using the GSDebugSAXHandler + class. Here is the sequence of callbacks that would be + reported when parsing the example XML document shown earlier. +

+
+ + + handler + +

Create a new SAX handler. +

+
+
+ + + init + +

Create a new SAX handler. +

+
+
+ + + lib + +

Return pointer to xmlSAXHandler structure. +

+
+
+ + + + startDocument + +

Called when the document start being processed. +

+
+
+ + + endDocument + +

Called when the document end has been detected. +

+
+
+ + + isStandalone + +

Called if the document is standalone. +

+
+
+ + + startElement: + elementName + attributes: + elementAttributes + +

Called when an opening tag has been processed. +

+
+
+ + + + endElement + elementName + +

Called when the end of an element has been detected. +

+
+
+ + + attribute: + name + value: + value + +

Handle an attribute that has been read by the parser. +

+
+
+ + + characters: + name + length: + len + +

Receiving some chars from the parser. +

+
+
+ + + ignoreWhitespace: + ch + length: + length + +

Receiving some ignorable whitespaces from the parser. +

+
+
+ + + processInstruction: + targetName + value: + PIData + +

A processing instruction has been parsed. +

+
+
+ + + comment: + value + +

A comment has been parsed. +

+
+
+ + + cdataBlock: + value + length: + length + +

Called when a pcdata block has been parsed. +

+
+
+ + + globalNamespace: + name + href: + href + prefix: + prefix + +

An old global namespace has been parsed. +

+
+
+ + + error: + message + +

Called when found a error. +

+
+
+ + + fatalError: + message + +

Called when found a fatal error. +

+
+
+ + + warning: + message + +

Called when found a warning. +

+
+
+ + + hasInternalSubset: + +

Callback on internal subset declaration. +

+
+
+ + + hasExternalSubset: + +

Does this document have an external subset. +

+
+
+ + + internalSubset: + name + externalID: + externalID + systemID: + systemID + +

Callback on internal subset declaration. +

+
+
+ + + resolveEntity: + publicID + systemID: + systemID + +

The entity loader, to control the loading of external entities, + the application can either. +

+
+
+ + + getEntity: + name + +

Get an entity by name. +

+
+
+ + + getParameterEntity: + name + +

Get a parameter entity by name. +

+
+
+ + + namespaceDecl: + name + href: + href + prefix: + prefix + +

A namespace has been parsed. +

+
+
+ + + notationDecl: + publicId + systemId: + systemId + +

What to do when a notation declaration has been parsed. +

+
+
+ + + entityDecl: + name + type: + type + publicId: + publicId + systemId: + systemId + content: + content + +

An entity definition has been parsed. +

+
+
+ + + attributeDecl: + nameElement + name: + name + type: + type + typeDefValue: + defType + defaultValue: + value + +

An attribute definition has been parsed. +

+
+
+ + + elementDecl: + name + type: + type + +

An element definition has been parsed. +

+
+
+ + + unparsedEntityDecl: + name + public: + publicId + system: + systemId + notationName: + notation + +

What to do when an unparsed entity declaration is parsed. +

+
+
+ + + reference: + name + +

Called when an entity reference is detected. +

+
+
+
+
+ +
+ diff --git a/Documentation/gsdoc/GSSAXHandler.html b/Documentation/gsdoc/GSSAXHandler.html new file mode 100644 index 000000000..a437c6e66 --- /dev/null +++ b/Documentation/gsdoc/GSSAXHandler.html @@ -0,0 +1,358 @@ + +GSSAXHandler + + +[Previous] +[Up] +

GSSAXHandler

+

Authors

+
+
Michael Pakhantsov +
+
Richard Frith-Macdonald +
+
+

Version: 0.2

+

Date: 15 september, 2000

+

GSSAXHandler

+

GSSAXHandler

+

Declared in: GSXML.h

+

Inherits from: NSObject

+
+ +

+XML SAX Handler.

+ +

+SAX is a callback-based interface to the XML parser.

+ +

+ + You can debug the SAX behaviour by using the GSDebugSAXHandler + class. Here is the sequence of callbacks that would be + reported when parsing the example XML document shown earlier. +

+ + +

Instance Variables

+ +

Methods

+ +

Class Methods

+

handler

++ (GSSAXHandler*) handler;
+ +

+Create a new SAX handler. +

+ + +
+

Instances Methods

+

init

+- (id) init;
+ +

+Create a new SAX handler. +

+ + +
+

lib

+- (void*) lib;
+ +

+Return pointer to xmlSAXHandler structure. +

+ + +
+

startDocument

+- (void) startDocument;
+ +

+Called when the document start being processed. +

+ + +
+

endDocument

+- (void) endDocument;
+ +

+Called when the document end has been detected. +

+ + +
+

isStandalone

+- (void) isStandalone;
+ +

+Called if the document is standalone. +

+ + +
+

startElement:attributes:

+- (void) startElement: (NSString*)elementName attributes: (NSMutableDictionary*)elementAttributes;
+ +

+Called when an opening tag has been processed. +

+ + +
+

endElement

+- (void) endElement (NSString*)elementName;
+ +

+Called when the end of an element has been detected. +

+ + +
+

attribute:value:

+- (void) attribute: (NSString*)name value: (NSString*)value;
+ +

+Handle an attribute that has been read by the parser. +

+ + +
+

characters:length:

+- (void) characters: (NSString*)name length: (int)len;
+ +

+Receiving some chars from the parser. +

+ + +
+

ignoreWhitespace:length:

+- (void) ignoreWhitespace: (NSString*)ch length: (int)length;
+ +

+Receiving some ignorable whitespaces from the parser. +

+ + +
+

processInstruction:value:

+- (void) processInstruction: (NSString*)targetName value: (NSString*)PIData;
+ +

+A processing instruction has been parsed. +

+ + +
+

comment:

+- (void) comment: (NSString*)value;
+ +

+A comment has been parsed. +

+ + +
+

cdataBlock:length:

+- (void) cdataBlock: (NSString*)value length: (int)length;
+ +

+Called when a pcdata block has been parsed. +

+ + +
+

globalNamespace:href:prefix:

+- (void) globalNamespace: (NSString*)name href: (NSString*)href prefix: (NSString*)prefix;
+ +

+An old global namespace has been parsed. +

+ + +
+

error:

+- (void) error: (NSString*)message;
+ +

+Called when found a error. +

+ + +
+

fatalError:

+- (void) fatalError: (NSString*)message;
+ +

+Called when found a fatal error. +

+ + +
+

warning:

+- (void) warning: (NSString*)message;
+ +

+Called when found a warning. +

+ + +
+

hasInternalSubset:

+- (void) hasInternalSubset:;
+ +

+Callback on internal subset declaration. +

+ + +
+

hasExternalSubset:

+- (void) hasExternalSubset:;
+ +

+Does this document have an external subset. +

+ + +
+

internalSubset:externalID:systemID:

+- (void) internalSubset: (NSString*)name externalID: (NSString*)externalID systemID: (NSString*)systemID;
+ +

+Callback on internal subset declaration. +

+ + +
+

resolveEntity:systemID:

+- (void) resolveEntity: (NSString*)publicID systemID: (NSString*)systemID;
+ +

+The entity loader, to control the loading of external entities, + the application can either. +

+ + +
+

getEntity:

+- (void) getEntity: (NSString*)name;
+ +

+Get an entity by name. +

+ + +
+

getParameterEntity:

+- (void) getParameterEntity: (NSString*)name;
+ +

+Get a parameter entity by name. +

+ + +
+

namespaceDecl:href:prefix:

+- (void) namespaceDecl: (NSString*)name href: (NSString*)href prefix: (NSString*)prefix;
+ +

+A namespace has been parsed. +

+ + +
+

notationDecl:systemId:

+- (void) notationDecl: (NSString*)publicId systemId: (NSString*)systemId;
+ +

+What to do when a notation declaration has been parsed. +

+ + +
+

entityDecl:type:publicId:systemId:content:

+- (void) entityDecl: (NSString*)name type: (int)type publicId: (NSString*)publicId systemId: (NSString*)systemId content: (NSString*)content;
+ +

+An entity definition has been parsed. +

+ + +
+

attributeDecl:name:type:typeDefValue:defaultValue:

+- (void) attributeDecl: (NSString*)nameElement name: (NSString*)name type: (int)type typeDefValue: (int)defType defaultValue: (NSString*)value;
+ +

+An attribute definition has been parsed. +

+ + +
+

elementDecl:type:

+- (void) elementDecl: (NSString*)name type: (int)type;
+ +

+An element definition has been parsed. +

+ + +
+

unparsedEntityDecl:public:system:notationName:

+- (void) unparsedEntityDecl: (NSString*)name public: (NSString*)publicId system: (NSString*)systemId notationName: (NSString*)notation;
+ +

+What to do when an unparsed entity declaration is parsed. +

+ + +
+

reference:

+- (void) reference: (NSString*)name;
+ +

+Called when an entity reference is detected. +

+ + +
+ + + diff --git a/Documentation/gsdoc/GSXML.gsdoc b/Documentation/gsdoc/GSXML.gsdoc new file mode 100644 index 000000000..f2521d13f --- /dev/null +++ b/Documentation/gsdoc/GSXML.gsdoc @@ -0,0 +1,34 @@ + + + + + GNUstep xml parser + + + + 0.2 + 15 September, 2000 + + + + XML Parser +

+ The GNUstep XML parser. This is an Objective-C wrapper for libxml. + It provides for both event driven parsing, and walking a tree of + autoimatically parsed xml elements. +

+
+ The classes + + GSXMLNamespace + GSXMLNode + GSXMLAttribute + GSXMLDocument + GSXMLParser + GSSAXHandler + +
+
+ +
+ diff --git a/Documentation/gsdoc/GSXML.html b/Documentation/gsdoc/GSXML.html new file mode 100644 index 000000000..25eba3830 --- /dev/null +++ b/Documentation/gsdoc/GSXML.html @@ -0,0 +1,32 @@ + +GNUstep xml parser + + +[Up] +

GNUstep xml parser

+

Authors

+
+
Michael Pakhantsov +
+
+

Version: 0.2

+

Date: 15 September, 2000

+

XML Parser

+

+ + The GNUstep XML parser. This is an Objective-C wrapper for libxml. + It provides for both event driven parsing, and walking a tree of + autoimatically parsed xml elements. +

+

The classes

+ + + + diff --git a/Documentation/gsdoc/GSXMLAttribute.gsdoc b/Documentation/gsdoc/GSXMLAttribute.gsdoc new file mode 100644 index 000000000..ae56ee5e2 --- /dev/null +++ b/Documentation/gsdoc/GSXMLAttribute.gsdoc @@ -0,0 +1,122 @@ + + + + + GSXMLAttribute + + + + + + + 0.2 + 15 September, 2000 + + + + + GSXMLAttribute + + GSXML.h + + XML Attribute. + + + + attributeWithNode: + node + name: + name + value: + value + +

Create a new property carried by a node. +

+
+
+ + + initWithNode: + node + name: + name + value: + value + +

Create a new property carried by a node. +

+
+
+ + + attributeFrom: + data + +

Creation of a new Attribute from libxml data. +

+
+
+ + + initFrom: + data + +

Creation of a new Attribute from libxml data. +

+
+
+ + + lib + +

Return pointer to xmlAttribute structure. +

+
+
+ + + name + +

Return a Attribute name. +

+
+
+ + + value + +

Return a value of this attribute. +

+
+
+ + + next + +

Return next Attribute. +

+ + + id a = [node properties]; + NSLog(@"n1 property name - %@ value - %@", [a name], [a value]); + while ((a = [a next]) != nil) + { + NSLog(@"n1 property name - %@ value - %@", [a name], [a value]); + } + + +
+
+ + + prev + +

Return previous Attribute. +

+
+
+
+
+ +
+ diff --git a/Documentation/gsdoc/GSXMLAttribute.html b/Documentation/gsdoc/GSXMLAttribute.html new file mode 100644 index 000000000..3f64da191 --- /dev/null +++ b/Documentation/gsdoc/GSXMLAttribute.html @@ -0,0 +1,141 @@ + +GSXMLAttribute + + +[Previous] +[Up] +[Next] +

GSXMLAttribute

+

Authors

+
+
Michael Pakhantsov +
+
Richard Frith-Macdonald +
+
+

Version: 0.2

+

Date: 15 September, 2000

+

GSXMLAttribute

+

GSXMLAttribute

+

Declared in: GSXML.h

+

Inherits from: GSXMLNode

+
+ + XML Attribute. + +

Instance Variables

+ +

Methods

+ +

Class Methods

+

attributeWithNode:name:value:

++ (GSXMLAttribute*) attributeWithNode: (GSXMLNode*)node name: (NSString*)name value: (NSString*)value;
+ +

+Create a new property carried by a node. +

+ + +
+

attributeFrom:

++ (GSXMLAttribute*) attributeFrom: (void*)data;
+ +

+Creation of a new Attribute from libxml data. +

+ + +
+

Instances Methods

+

initWithNode:name:value:

+- (id) initWithNode: (GSXMLNode*)node name: (NSString*)name value: (NSString*)value;
+ +

+Create a new property carried by a node. +

+ + +
+

initFrom:

+This is the designated initialiser
+- (id) initFrom: (void*)data;
+ +

+Creation of a new Attribute from libxml data. +

+ + +
+

lib

+- (void*) lib;
+ +

+Return pointer to xmlAttribute structure. +

+ + +
+

name

+- (NSString*) name;
+ +

+Return a Attribute name. +

+ + +
+

value

+- (NSString*) value;
+ +

+Return a value of this attribute. +

+ + +
+

next

+- (GSXMLAttribute*) next;
+ +

+Return next Attribute. +

+ + example +
+
+
+            id a = [node properties];
+            NSLog(@"n1 property name - %@ value - %@", [a name], [a value]);
+            while ((a = [a next]) != nil)
+              {
+                NSLog(@"n1 property name - %@ value - %@", [a name], [a value]);
+              }
+
+	     
+
+ + +
+

prev

+- (GSXMLAttribute*) prev;
+ +

+Return previous Attribute. +

+ + +
+ + + diff --git a/Documentation/gsdoc/GSXMLDocument.gsdoc b/Documentation/gsdoc/GSXMLDocument.gsdoc new file mode 100644 index 000000000..1e674417d --- /dev/null +++ b/Documentation/gsdoc/GSXMLDocument.gsdoc @@ -0,0 +1,165 @@ + + + + + GSXMLDocument + + + + 0.2 + 15 September, 2000 + + + + + GSXMLDocument + + GSXML.h + +

+ XML Document. +

+
+ + + + documentWithVersion: + version + +

+ Creation of a new XML document. +

+ + + + id d = [GSXMLDocument documentWithVersion: @"1.0"]; + + [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]]; + [[d root] setProp: @"version" value: @"0.9"]; + n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil]; + [n1 makeComment: @" this is a comment "]; + [n1 makePI: @"pi1" content: @"this is a process instruction"]; + [n1 makeChildWithNamespace: nil name: @"key" content: @"Year Of Birth"]; + [n1 makeChildWithNamespace: nil name: @"integer" content: @"65"]; + [n1 makeChildWithnamespace: nil name: @"key" content: @"Pets Names"]; + + +
+
+ + + initWithVersion: + version + +

+ Creation of a new XML document. +

+
+
+ + + documentFrom: + data + +

+ Creation of a new Document from libxml data. +

+
+
+ + + initFrom: + data + +

+ Creation of a new Document from libxml data. +

+
+
+ + + version + +

+ Return the version of document. +

+
+
+ + + encoding + +

+ Return the encoding of document. +

+
+
+ + + save: + filename + +

+ Save XML document. +

+
+
+ + + lib + +

+ Return pointer to xmlDoc structure. +

+
+
+ + + root + +

+ Return the root name of document. +

+
+
+ + + setRoot: + node + +

+ Set the root element of the document. + Return the old root element. +

+
+
+ + + makeNodeWithNamespace: + ns + name: + name + content: + content + +

+ Creation of a new node element within a document. +

+ + + GSXMLNode *n1, *n2; + GSXMLDocument *d; + + d = [GSXMLDocument documentWithVersion: @"1.0"]; + [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]]; + [[d root] setProp: @"version" value: @"0.9"]; + n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil]; + + +
+
+
+
+ +
+ diff --git a/Documentation/gsdoc/GSXMLDocument.html b/Documentation/gsdoc/GSXMLDocument.html new file mode 100644 index 000000000..07a3ab97a --- /dev/null +++ b/Documentation/gsdoc/GSXMLDocument.html @@ -0,0 +1,195 @@ + +GSXMLDocument + + +[Previous] +[Up] +[Next] +

GSXMLDocument

+

Authors

+
+
Michael Pakhantsov +
+
+

Version: 0.2

+

Date: 15 September, 2000

+

GSXMLDocument

+

GSXMLDocument

+

Declared in: GSXML.h

+

Inherits from: NSObject

+
+ +

+ + XML Document. +

+ + +

Instance Variables

+ +

Methods

+ +

Class Methods

+

documentWithVersion:

++ (GSXMLDocument*) documentWithVersion: (NSString*)version;
+ +

+ + Creation of a new XML document. +

+ + + example +
+
+
+  id d = [GSXMLDocument documentWithVersion: @"1.0"];
+
+  [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]];
+  [[d root] setProp: @"version" value: @"0.9"];
+  n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil];
+  [n1 makeComment: @" this is a comment "];
+  [n1 makePI: @"pi1" content: @"this is a process instruction"];
+  [n1 makeChildWithNamespace: nil name: @"key" content: @"Year Of Birth"];
+  [n1 makeChildWithNamespace: nil name: @"integer" content: @"65"];
+  [n1 makeChildWithnamespace: nil name: @"key" content: @"Pets Names"];
+
+	    
+
+ + +
+

documentFrom:

++ (GSXMLDocument*) documentFrom: (void*)data;
+ +

+ + Creation of a new Document from libxml data. +

+ + +
+

Instances Methods

+

initWithVersion:

+- (id) initWithVersion: (NSString*)version;
+ +

+ + Creation of a new XML document. +

+ + +
+

initFrom:

+This is the designated initialiser
+- (id) initFrom: (void*)data;
+ +

+ + Creation of a new Document from libxml data. +

+ + +
+

version

+- (NSString*) version;
+ +

+ + Return the version of document. +

+ + +
+

encoding

+- (NSString*) encoding;
+ +

+ + Return the encoding of document. +

+ + +
+

save:

+- (void) save: (NSString*)filename;
+ +

+ + Save XML document. +

+ + +
+

lib

+- (void*) lib;
+ +

+ + Return pointer to xmlDoc structure. +

+ + +
+

root

+- (GSXMLNode*) root;
+ +

+ + Return the root name of document. +

+ + +
+

setRoot:

+- (GSXMLNode*) setRoot: (GSXMLNode*)node;
+ +

+ + Set the root element of the document. + Return the old root element. +

+ + +
+

makeNodeWithNamespace:name:content:

+- (GSXMLDocument*) makeNodeWithNamespace: (GSXMLNamespace*)ns name: (NSString*)name content: (NSString*)content;
+ +

+ + Creation of a new node element within a document. +

+ + example +
+
+
+  GSXMLNode *n1, *n2;
+  GSXMLDocument *d;
+
+  d = [GSXMLDocument documentWithVersion: @"1.0"];
+  [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]];
+  [[d root] setProp: @"version" value: @"0.9"];
+  n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil];
+
+	    
+
+ + +
+ + + diff --git a/Documentation/gsdoc/GSXMLNamespace.gsdoc b/Documentation/gsdoc/GSXMLNamespace.gsdoc new file mode 100644 index 000000000..6a90f5bce --- /dev/null +++ b/Documentation/gsdoc/GSXMLNamespace.gsdoc @@ -0,0 +1,146 @@ + + + + + GSXMLNamespace + + + + + + + 0.2 + 15 September, 2000 + + + + + GSXMLNamespace + + GSXML.h + + XML namespace. + + + namespaceWithNode: + node + prefix: + prefix + href: + href + +

+ Creation of a new Namespace. + This function will refuse to create a namespace + with a similar prefix than an existing one present on this node. +

+ + + .... + GSXMLNamespace *ns1, *ns2; + GSXMLNode *node1, *node2; + NSString *prefix = @"mac-os-property"; + NSString *href = @"http://www.gnustep.org/some/location"; + + ns = [GSXMLNamespace namespaceWithNode: nil + href: href + prefix: prefix]; + node1 = [GSXMLNode nodeWithNamespace: ns name: @"node1"]; + + node2 = [GSXMLNode nodeWithNamespace: nil name: @"node2"]; + ns2 = [GSXMLNamespace namespaceWithNode: node2 + href: href + prefix: prefix]; + + Result: + + node1 <mac-os-property:node1/> + node2 <node2 xmlns="mac-os-property"/> + + +
+
+ + initWithNode: + node + prefix: + prefix + href: + href + +

+ Creation of a new Namespace. This function will refuse to create + a namespace with a similar prefix than an existing one present on + this node. +

+
+
+ + + namespaceFrom: + data + +

+ Creation of a new Namespace from libxml data. +

+
+
+ + + initFrom: + data + +

+ Creation of a new Namespace from libxml data. +

+
+
+ + + lib + +

+ Return pointer to xmlNs structure. +

+
+
+ + + prefix + +

+ Return namespace prefix. +

+
+
+ + + href + +

+ Return namespace http reference. +

+
+
+ + + type + +

+ Return type of namespace. +

+
+
+ + + next + +

+ Return next namespace. +

+
+
+
+
+ +
diff --git a/Documentation/gsdoc/GSXMLNamespace.html b/Documentation/gsdoc/GSXMLNamespace.html new file mode 100644 index 000000000..69787262a --- /dev/null +++ b/Documentation/gsdoc/GSXMLNamespace.html @@ -0,0 +1,167 @@ + +GSXMLNamespace + + +[Up] +[Next] +

GSXMLNamespace

+

Authors

+
+
Michael Pakhantsov +
+
Richard Frith-Macdonald +
+
+

Version: 0.2

+

Date: 15 September, 2000

+

GSXMLNamespace

+

GSXMLNamespace

+

Declared in: GSXML.h

+

Inherits from: NSObject

+
+ + XML namespace. + +

Instance Variables

+ +

Methods

+ +

Class Methods

+

namespaceWithNode:prefix:href:

++ (GSXMLNamespace*) namespaceWithNode: (GSXMLNode*)node prefix: (NSString*)prefix href: (NSString*)href;
+ +

+ + Creation of a new Namespace. + This function will refuse to create a namespace + with a similar prefix than an existing one present on this node. +

+ + example +
+
+
+             ....
+             GSXMLNamespace *ns1, *ns2;
+             GSXMLNode *node1, *node2;
+             NSString *prefix = @"mac-os-property";
+             NSString *href   = @"http://www.gnustep.org/some/location";
+
+             ns = [GSXMLNamespace namespaceWithNode: nil
+                                               href: href
+                                             prefix: prefix];
+             node1 = [GSXMLNode nodeWithNamespace: ns name: @"node1"];
+
+             node2 = [GSXMLNode nodeWithNamespace: nil name: @"node2"];
+             ns2 = [GSXMLNamespace namespaceWithNode: node2
+                                                href: href
+                                              prefix: prefix];
+
+             Result:
+
+             node1   <mac-os-property:node1/>
+             node2   <node2 xmlns="mac-os-property"/>
+             
+
+ + + +
+

namespaceFrom:

++ (GSXMLNamespace*) namespaceFrom: (void*)data;
+ +

+ + Creation of a new Namespace from libxml data. +

+ + +
+

Instances Methods

+

initWithNode:prefix:href:

+- (id) initWithNode: (GSXMLNode*)node prefix: (NSString*)prefix href: (NSString*)href;
+ +

+ + Creation of a new Namespace. This function will refuse to create + a namespace with a similar prefix than an existing one present on + this node. +

+ + +
+

initFrom:

+This is the designated initialiser
+- (id) initFrom: (void*)data;
+ +

+ + Creation of a new Namespace from libxml data. +

+ + +
+

lib

+- (void*) lib;
+ +

+ + Return pointer to xmlNs structure. +

+ + +
+

prefix

+- (NSString*) prefix;
+ +

+ + Return namespace prefix. +

+ + +
+

href

+- (NSString*) href;
+ +

+ + Return namespace http reference. +

+ + +
+

type

+- (GSXMLNamespaceType) type;
+ +

+ + Return type of namespace. +

+ + +
+

next

+- (GSXMLNamespace*) next;
+ +

+ + Return next namespace. +

+ + +
+ + + diff --git a/Documentation/gsdoc/GSXMLNode.gsdoc b/Documentation/gsdoc/GSXMLNode.gsdoc new file mode 100644 index 000000000..a719d77bf --- /dev/null +++ b/Documentation/gsdoc/GSXMLNode.gsdoc @@ -0,0 +1,354 @@ + + + + + GSXMLNode + + + + + + + 0.2 + 15 September, 2000 + + + + GSXMLNode + + GSXML.h + +

+ XML Node. +

+
+ + + nodeWithNamespace: + ns + name: + name + prefix: + prefix + +

+ Creation of a new Node. This function will refuse to create a Node + with a similar prefix than an existing one present on this node. +

+ + + + ... + GSXMLNamespace *ns1; + GSXMLNode *node1, *node2; + NSString *prefix = @"mac-os-property"; + NSString *href = @"http://www.gnustep.org/some/location"; + + ns = [GSXMLNamespace namespaceWithNode: nil + href: href + prefix: prefix]; + node1 = [GSXMLNode nodeWithNamespace: ns name: @"node1"]; + node2 = [GSXMLNode nodeWithNamespace: nil name: @"node2"]; + ... + + +
+
+ + + initWithNamespace: + ns + name: + name + prefix: + prefix + +

+ Creation of a new node elemen, ns is optional (nil). +

+
+
+ + + nodeFrom: + data + +

+ Creation of a new Node from libxml data. +

+
+
+ + + initFrom: + data + +

+ Creation of a new Node from libxml data. +

+
+
+ + + lib + +

+ Return pointer to xmlNode structure. +

+
+
+ + + name + +

+ Return Node name. +

+
+
+ + + content + +

+ Return Node content. +

+
+
+ + + ns + +

+ Return Node namespace. +

+
+
+ + + nsDef + +

+ Return namespace definitions of this node. +

+
+
+ + + properties + +

+ Return pointer to the first attribute on this node. +

+ + + GSXMLNode *n1; + GSXMLAttribute *a; + + n1 = [GSXMLNode nodeWithNamespace: nil name: nodeName]; + [n1 setProp: @"prop1" value: @"value1"]; + [n1 setProp: @"prop2" value: @"value2"]; + [n1 setProp: @"prop3" value: @"value3"]; + + a = [n1 properties]; + NSLog(@"n1 property name - %@ value - %@", [a name], [a value]); + while ((a = [a next]) != nil) + { + NSLog(@"n1 property name - %@ value - %@", [a name], [a value]); + } + + +
+
+ + + propertiesAsDictionary + +

+ Return attritubes and values as a dictionary. +

+ + + GSXMLNode *n1; + NSMutableDictionary *prop; + NSEnumerator *e; + id key; + + prop = [n1 propertiesAsDictionary]; + e = [prop keyEnumerator]; + while ((key = [e nextObject]) != nil) + { + NSLog(@"property name - %@ value - %@", key, + [prop objectForKey: key]); + } + +
+
+ + + type + +

+ Return type of Node. +

+
+
+ + + doc + +

Return owner of this node. +

+
+
+ + + children + +

Return children of this node. +

+ + - (GSXMLNode*) nextElement: (GSXMLNode*)node + { + while (node != nil) + { + if ([node type] == XML_ELEMENT_NODE) + { + return node; + } + if ([node children] != nil) + { + node = [self nextElement: [node children]]; + } + else + node = [node next]; + } + return node; + } + +
+
+ + + parent + +

Return parent of this node. +

+
+
+ + + next + +

Return next node. +

+
+
+ + + prev + +

Return previous node. +

+
+
+ + + makeChild: + ns + name: + name + content: + content + +

+ Creation of a new child element, added at the end of + parent children list. + ns and content parameters are optional (may be nil). + If content is non nil, a child list containing the + TEXTs and ENTITY_REFs node will be created. + Return previous node. +

+ + + GSXMLNode *n1, *n2; + GSXMLDocument *d, *d1; + + d = [GSXMLDocument documentWithVersion: @"1.0"]; + [d setRoot: [d makeNodeWithNamespace: nil + name: @"plist" + content: nil]]; + [[d root] setProp: @"version" value: @"0.9"]; + n1 = [[d root] makeChildWithNamespace: nil + name: @"dict" + content: nil]; + [n1 makeChildWithNamespace: nil name: @"key" content: @"Year Of Birth"]; + [n1 makeChildWithNamespace: nil name: @"integer" content: @"65"]; + [n1 makeChildWithNamespace: nil name: @"key" content: @"Pets Names"]; + [n1 makeChildWithNamespace: nil name: @"array" content: nil]; + + +
+
+ + + makeComment: + content + +

+ Creation of a new comment element, added at the end of + parent children list. +

+ + d = [GSXMLDocument documentWithVersion: @"1.0"]; + + [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]]; + [[d root] setProp: @"version" value: @"0.9"]; + n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil]; + [n1 makeComment: @" this is a comment "]; + +
+
+ + + makePI: + content + +

+ Creation of a new process instruction element, + added at the end of parent children list. +

+ + d = [GSXMLDocument documentWithVersion: @"1.0"]; + + [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]]; + [[d root] setProp: @"version" value: @"0.9"]; + n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil]; + [n1 makeComment: @" this is a comment "]; + [n1 makePI: @"pi1" content: @"this is a process instruction"]; + +
+
+ + + setProp: + name + value: + value + +

Set (or reset) an attribute carried by a node. +

+ + id n1 = [GSXMLNode nodeWithNamespace: nil name: nodeName]; + [n1 setProp: @"prop1" value: @"value1"]; + [n1 setProp: @"prop2" value: @"value2"]; + [n1 setProp: @"prop3" value: @"value3"]; + + +
+
+
+
+ +
+ diff --git a/Documentation/gsdoc/GSXMLNode.html b/Documentation/gsdoc/GSXMLNode.html new file mode 100644 index 000000000..613c93c40 --- /dev/null +++ b/Documentation/gsdoc/GSXMLNode.html @@ -0,0 +1,418 @@ + +GSXMLNode + + +[Previous] +[Up] +[Next] +

GSXMLNode

+

Authors

+
+
Michael Pakhantsov +
+
Richard Frith-Macdonald +
+
+

Version: 0.2

+

Date: 15 September, 2000

+

GSXMLNode

+

GSXMLNode

+

Declared in: GSXML.h

+

Inherits from: NSObject

+
+ +

+ + XML Node. +

+ + +

Instance Variables

+ +

Methods

+ +

Class Methods

+

nodeWithNamespace:name:prefix:

++ (GSXMLNode*) nodeWithNamespace: (GSXMLNamespace*)ns name: (NSString*)name prefix: (NSString*)prefix;
+ +

+ + Creation of a new Node. This function will refuse to create a Node + with a similar prefix than an existing one present on this node. +

+ + + example +
+
+
+             ...
+             GSXMLNamespace *ns1;
+             GSXMLNode *node1, *node2;
+             NSString *prefix = @"mac-os-property";
+             NSString *href   = @"http://www.gnustep.org/some/location";
+
+             ns = [GSXMLNamespace namespaceWithNode: nil
+                                               href: href
+                                             prefix: prefix];
+             node1 = [GSXMLNode nodeWithNamespace: ns name: @"node1"];
+             node2 = [GSXMLNode nodeWithNamespace: nil name: @"node2"];
+             ...
+
+          
+
+ + +
+

nodeFrom:

++ (GSXMLNode*) nodeFrom: (void*)data;
+ +

+ + Creation of a new Node from libxml data. +

+ + +
+

Instances Methods

+

initWithNamespace:name:prefix:

+- (id) initWithNamespace: (GSXMLNamespace*)ns name: (NSString*)name prefix: (NSString*)prefix;
+ +

+ + Creation of a new node elemen, ns is optional (nil). +

+ + +
+

initFrom:

+This is the designated initialiser
+- (id) initFrom: (void*)data;
+ +

+ + Creation of a new Node from libxml data. +

+ + +
+

lib

+- (void*) lib;
+ +

+ + Return pointer to xmlNode structure. +

+ + +
+

name

+- (NSString*) name;
+ +

+ + Return Node name. +

+ + +
+

content

+- (NSString*) content;
+ +

+ + Return Node content. +

+ + +
+

ns

+- (GSXMLNamespace*) ns;
+ +

+ + Return Node namespace. +

+ + +
+

nsDef

+- (GSXMLNamespace*) nsDef;
+ +

+ + Return namespace definitions of this node. +

+ + +
+

properties

+- (GSXMLAttribute*) properties;
+ +

+ + Return pointer to the first attribute on this node. +

+ + example +
+
+
+            GSXMLNode *n1;
+            GSXMLAttribute *a;
+
+            n1 = [GSXMLNode nodeWithNamespace: nil name: nodeName];
+            [n1 setProp: @"prop1" value: @"value1"];
+            [n1 setProp: @"prop2" value: @"value2"];
+            [n1 setProp: @"prop3" value: @"value3"];
+
+            a = [n1 properties];
+            NSLog(@"n1 property name - %@ value - %@", [a name], [a value]);
+            while ((a = [a next]) != nil)
+              {
+                NSLog(@"n1 property name - %@ value - %@", [a name], [a value]);
+              }
+
+           
+
+ + +
+

propertiesAsDictionary

+- (NSDictionary*) propertiesAsDictionary;
+ +

+ + Return attritubes and values as a dictionary. +

+ + example +
+
+
+            GSXMLNode *n1;
+            NSMutableDictionary *prop;
+            NSEnumerator *e;
+            id key;
+
+            prop = [n1 propertiesAsDictionary];
+            e = [prop keyEnumerator];
+            while ((key = [e nextObject]) != nil)
+              {
+                NSLog(@"property name - %@ value - %@", key,
+		  [prop objectForKey: key]);
+              }
+	    
+
+ + +
+

type

+- (GSXMLNodeType) type;
+ +

+ + Return type of Node. +

+ + +
+

doc

+- (GSXMLDocument*) doc;
+ +

+Return owner of this node. +

+ + +
+

children

+- (GSXMLNode*) children;
+ +

+Return children of this node. +

+ + example +
+
+              - (GSXMLNode*) nextElement: (GSXMLNode*)node
+              {
+                while (node != nil)
+                  {
+                    if ([node type] == XML_ELEMENT_NODE)
+                      {
+                        return node;
+                      }
+                    if ([node children] != nil)
+                      {
+                        node = [self nextElement: [node children]];
+                      }
+		    else
+		      node = [node next];
+                  }
+                return node;
+              }
+           
+
+ + +
+

parent

+- (GSXMLNode*) parent;
+ +

+Return parent of this node. +

+ + +
+

next

+- (GSXMLNode*) next;
+ +

+Return next node. +

+ + +
+

prev

+- (GSXMLNode*) prev;
+ +

+Return previous node. +

+ + +
+

makeChild:name:content:

+- (GSXMLNode*) makeChild: (GSXMLNamespace*)ns name: (NSString*)name content: (NSString*)content;
+ +

+ + Creation of a new child element, added at the end of + parent children list. + ns and content parameters are optional (may be nil). + If content is non nil, a child list containing the + TEXTs and ENTITY_REFs node will be created. + Return previous node. +

+ + example +
+
+
+  GSXMLNode *n1, *n2;
+  GSXMLDocument *d, *d1;
+
+  d = [GSXMLDocument documentWithVersion: @"1.0"];
+  [d setRoot: [d makeNodeWithNamespace: nil
+				  name: @"plist"
+			       content: nil]];
+  [[d root] setProp: @"version" value: @"0.9"];
+  n1 = [[d root] makeChildWithNamespace: nil
+				   name: @"dict"
+				content: nil];
+  [n1 makeChildWithNamespace: nil name: @"key" content: @"Year Of Birth"];
+  [n1 makeChildWithNamespace: nil name: @"integer" content: @"65"];
+  [n1 makeChildWithNamespace: nil name: @"key" content: @"Pets Names"];
+  [n1 makeChildWithNamespace: nil name: @"array" content: nil];
+
+	    
+
+ + +
+

makeComment:

+- (GSXMLNode*) makeComment: (NSString*)content;
+ +

+ + Creation of a new comment element, added at the end of + parent children list. +

+ + example +
+
+  d = [GSXMLDocument documentWithVersion: @"1.0"];
+
+  [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]];
+  [[d root] setProp: @"version" value: @"0.9"];
+  n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil];
+  [n1 makeComment: @" this is a comment "];
+	    
+
+ + +
+

makePI:

+- (GSXMLNode*) makePI: (NSString*)content;
+ +

+ + Creation of a new process instruction element, + added at the end of parent children list. +

+ + example +
+
+  d = [GSXMLDocument documentWithVersion: @"1.0"];
+
+  [d setRoot: [d makeNodeWithNamespace: nil name: @"plist" content: nil]];
+  [[d root] setProp: @"version" value: @"0.9"];
+  n1 = [[d root] makeChildWithNamespace: nil name: @"dict" content: nil];
+  [n1 makeComment: @" this is a comment "];
+  [n1 makePI: @"pi1" content: @"this is a process instruction"];
+	    
+
+ + +
+

setProp:value:

+- (GSXMLAttribute*) setProp: (NSString*)name value: (NSString*)value;
+ +

+Set (or reset) an attribute carried by a node. +

+ + example +
+
+  id n1 = [GSXMLNode nodeWithNamespace: nil name: nodeName];
+  [n1 setProp: @"prop1" value: @"value1"];
+  [n1 setProp: @"prop2" value: @"value2"];
+  [n1 setProp: @"prop3" value: @"value3"];
+
+	    
+
+ + +
+ + + diff --git a/Documentation/gsdoc/GSXMLParser.gsdoc b/Documentation/gsdoc/GSXMLParser.gsdoc new file mode 100644 index 000000000..97ae6b587 --- /dev/null +++ b/Documentation/gsdoc/GSXMLParser.gsdoc @@ -0,0 +1,185 @@ + + + + + GSXMLParser + + + + + + + 0.1 + 15 September, 2000 + + + + + GSXMLParser + + GSXML.h + +

XML Parser. +

+
+ + + + parser: + source + +

Creation of a new Parser. +

+

+ Source must be NSString or NSData. +

+ + GSXMLParser *p = [GSXMLParser parser:@"macos.xml"]; + + if ([p parse]) + { + [[p doc] dump]; + } + else + { + printf("error parse file\n"); + } + + + +
+
+ + + parserWithSAXHandler: + handler + source: + source + +

Creation of a new Parser with SAX handler. +

+ + NSAutoreleasePool *arp = [[NSAutoreleasePool alloc] init]; + GSSAXHandler *h = [GSDebugSAXHandler handler]; + GSXMLParser *p = [GSXMLParser parserWithSAXHandler: h + source: @"macos.xml"]; + + if ([p parse]) + { + printf("ok\n"); + } + + + [arp release]; + +
+
+ + + initWithSAXHandler: + handler + source: + source + +

Creation of a new Parser with SAX handler. +

+
+
+ + + lib + +

Return pointer to xmlParserCtxt structure. +

+
+
+ + + doc + +

Return GSXMLDocument object. +

+ +
+
+ + + parse + +

Parse source. Return YES if parsed, otherwise NO. +

+ + GSXMLParser *p = [GSXMLParser parser:@"macos.xml"]; + + if ([p parse]) + { + [[p doc] dump]; + } + else + { + printf("error parse file\n"); + } + + +
+
+ + + substituteEntites: + yesno + +

Set and return the previous value for default entity support. + Initially the parser always keep entity references instead of substituting + entity values in the output. +

+
+
+ + + keepBlanks: + yesno + +

Set and return the previous value for default blanks text nodes support. + ignorableWhitespace() are only generated when running the parser in validating mode + and when the current element doesn't allow CDATA or mixed content. +

+
+
+ + + getWarnings: + yesno + + + + + + doValidityChecking: + yesno + +

Sets whether the document needs to be validated. +

+
+
+ + + errNo + +

Return error code. +

+
+
+ + + setExternalEntityLoader + function + +

Set a external entity loader. +

+
+
+
+
+ +
+ diff --git a/Documentation/gsdoc/GSXMLParser.html b/Documentation/gsdoc/GSXMLParser.html new file mode 100644 index 000000000..ebec5678b --- /dev/null +++ b/Documentation/gsdoc/GSXMLParser.html @@ -0,0 +1,219 @@ + +GSXMLParser + + +[Previous] +[Up] +[Next] +

GSXMLParser

+

Authors

+
+
Michael Pakhantsov +
+
Richard Frith-Macdonald +
+
+

Version: 0.1

+

Date: 15 September, 2000

+

GSXMLParser

+

GSXMLParser

+

Declared in: GSXML.h

+

Inherits from: NSObject

+
+ +

+XML Parser. +

+ + +

Instance Variables

+ +

Methods

+ +

Class Methods

+

parser:

++ (GSXMLParser*) parser: (id)source;
+ +

+Creation of a new Parser. +

+ +

+ + Source must be NSString or NSData. +

+ + example +
+
+  GSXMLParser       *p = [GSXMLParser parser:@"macos.xml"];
+
+  if ([p parse])
+    {
+      [[p doc] dump];
+    }
+  else
+    {
+      printf("error parse file\n");
+    }
+
+            
+
+ + + +
+

parserWithSAXHandler:source:

++ (GSXMlParser*) parserWithSAXHandler: (GSSAXHandler*)handler source: (id)source;
+ +

+Creation of a new Parser with SAX handler. +

+ + example +
+
+  NSAutoreleasePool *arp = [[NSAutoreleasePool alloc] init];
+  GSSAXHandler *h = [GSDebugSAXHandler handler];
+  GSXMLParser       *p = [GSXMLParser parserWithSAXHandler: h
+						    source: @"macos.xml"];
+
+  if ([p parse])
+    {
+       printf("ok\n");
+    }
+
+
+  [arp release];
+            
+
+ + +
+

Instances Methods

+

initWithSAXHandler:source:

+This is the designated initialiser
+- (id) initWithSAXHandler: (GSSAXHandler*)handler source: (id)source;
+ +

+Creation of a new Parser with SAX handler. +

+ + +
+

lib

+- (void*) lib;
+ +

+Return pointer to xmlParserCtxt structure. +

+ + +
+

doc

+- (GSXMLDocument*) doc;
+ +

+Return GSXMLDocument object. +

+ + + +
+

parse

+- (BOOL) parse;
+ +

+Parse source. Return YES if parsed, otherwise NO. +

+ + example +
+
+  GSXMLParser       *p = [GSXMLParser parser:@"macos.xml"];
+
+  if ([p parse])
+    {
+      [[p doc] dump];
+    }
+  else
+    {
+      printf("error parse file\n");
+    }
+
+            
+
+ + +
+

substituteEntites:

+- (BOOL) substituteEntites: (BOOL)yesno;
+ +

+Set and return the previous value for default entity support. + Initially the parser always keep entity references instead of substituting + entity values in the output. +

+ + +
+

keepBlanks:

+- (BOOL) keepBlanks: (BOOL)yesno;
+ +

+Set and return the previous value for default blanks text nodes support. + ignorableWhitespace() are only generated when running the parser in validating mode + and when the current element doesn't allow CDATA or mixed content. +

+ + +
+

getWarnings:

+- (BOOL) getWarnings: (BOOL)yesno;
+ + +
+

doValidityChecking:

+- (BOOL) doValidityChecking: (BOOL)yesno;
+ +

+Sets whether the document needs to be validated. +

+ + +
+

errNo

+- (int) errNo;
+ +

+Return error code. +

+ + +
+

setExternalEntityLoader

+- (void) setExternalEntityLoader (void*)function;
+ +

+Set a external entity loader. +

+ + +
+ + + diff --git a/Documentation/gsdoc/NSArchiver.html b/Documentation/gsdoc/NSArchiver.html index c53006963..2d68b4950 100644 --- a/Documentation/gsdoc/NSArchiver.html +++ b/Documentation/gsdoc/NSArchiver.html @@ -15,12 +15,16 @@

NSArchiver

NSArchiver

Declared in: Foundation/NSArchiver.h

-

Inherits from: NSCoder

+

Inherits from: NSCoder

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

archiveRootObject:

+

Class Methods

+

archiveRootObject:

+ (BOOL) archiveRootObject: (id)rootObject;

-

archivedDataWithRootObject:

+

archivedDataWithRootObject:

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

-

archiverData

-- (NSMutableData*) archiverData;
+

Instances Methods

+

archiverData

+- (NSMutableData*) archiverData;

-

classNameEncodedForTrueClassName:

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

classNameEncodedForTrueClassName:

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

-

encodeClassName:intoClassName:

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

encodeClassName:intoClassName:

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

-

encodeConditionalObject:

+

encodeConditionalObject:

- (void) encodeConditionalObject: (id)object;

-

encodeRootObject:

+

encodeRootObject:

- (void) encodeRootObject: (id)rootObject;

-

initForWritingWithMutableData:

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

initForWritingWithMutableData:

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

-

replaceObject:withObject:

+

replaceObject:withObject:

- (void) replaceObject: (id)object withObject: (id)newObject;
diff --git a/Documentation/gsdoc/NSArray.html b/Documentation/gsdoc/NSArray.html index 69d425434..1d7cb298f 100644 --- a/Documentation/gsdoc/NSArray.html +++ b/Documentation/gsdoc/NSArray.html @@ -16,12 +16,16 @@

NSArray

NSArray

Declared in: Foundation/NSArray.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

allocWithZone:

+

Class Methods

+

allocWithZone:

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

-

array

+

array

+ (id) array;

-

arrayWithArray:

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

arrayWithArray:

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

-

arrayWithContentsOfFile:

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

arrayWithContentsOfFile:

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

-

arrayWithObject:

+

arrayWithObject:

+ (id) arrayWithObject: (id)anObject;

-

arrayWithObjects:

+

arrayWithObjects:

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

-

arrayWithObjects:

+

arrayWithObjects:

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

-

arrayByAddingObject:

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

Instances Methods

+

arrayByAddingObject:

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

-

arrayByAddingObjectsFromArray:

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

arrayByAddingObjectsFromArray:

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

-

componentsJoinedByString:

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

componentsJoinedByString:

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

-

containsObject:

+

containsObject:

- (BOOL) containsObject: (id)anObject;

-

count

+

count

- (unsigned int) count;

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

firstObjectCommonWithArray:

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

firstObjectCommonWithArray:

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

-

getObjects:

+

getObjects:

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

-

getObjects:

+

getObjects:

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

-

indexOfObject:

+

indexOfObject:

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

-

indexOfObject:

+

indexOfObject:

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

-

indexOfObjectIdenticalTo:

+

indexOfObjectIdenticalTo:

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

-

indexOfObjectIdenticalTo:

+

indexOfObjectIdenticalTo:

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

-

initWithArray:

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

initWithArray:

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

-

initWithContentsOfFile:

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

initWithContentsOfFile:

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

-

initWithObjects:

+

initWithObjects:

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

-

initWithObjects:

+

initWithObjects:

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

-

isEqualToArray:

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

isEqualToArray:

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

-

lastObject

+

lastObject

- (id) lastObject;

-

makeObjectsPerformSelector:

+

makeObjectsPerformSelector:

- (void) makeObjectsPerformSelector: (SEL)aSelector;

-

makeObjectsPerformSelector:withObject:

+

makeObjectsPerformSelector:withObject:

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

-

objectAtIndex:

+

objectAtIndex:

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

-

objectEnumerator

-- (NSEnumerator*) objectEnumerator;
+

objectEnumerator

+- (NSEnumerator*) objectEnumerator;

-

pathsMatchingExtensions:

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

pathsMatchingExtensions:

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

-

reverseObjectEnumerator

-- (NSEnumerator*) reverseObjectEnumerator;
+

reverseObjectEnumerator

+- (NSEnumerator*) reverseObjectEnumerator;

-

sortedArrayHint

+

sortedArrayHint

- (NSData*) sortedArrayHint;

-

sortedArrayUsingFunction:context:

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

sortedArrayUsingFunction:context:

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

-

sortedArrayUsingFunction:context:

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

sortedArrayUsingFunction:context:

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

-

sortedArrayUsingSelector:

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

sortedArrayUsingSelector:

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

-

subarrayWithRange:

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

subarrayWithRange:

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

-

writeToFile:atomically:

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

writeToFile:atomically:

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

diff --git a/Documentation/gsdoc/NSAssertionHandler.html b/Documentation/gsdoc/NSAssertionHandler.html index 95673e28b..a808e7aad 100644 --- a/Documentation/gsdoc/NSAssertionHandler.html +++ b/Documentation/gsdoc/NSAssertionHandler.html @@ -16,30 +16,35 @@

NSAssertionHandler

NSAssertionHandler

Declared in: Foundation/NSException.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

currentHandler

-+ (NSAssertionHandler*) currentHandler;
+

Class Methods

+

currentHandler

++ (NSAssertionHandler*) currentHandler;

-

handleFailureInFunction:file:lineNumber:description:

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

Instances Methods

+

handleFailureInFunction:file:lineNumber:description:

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

-

handleFailureInMethod:object:file:lineNumber:description:

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

handleFailureInMethod:object:file:lineNumber:description:

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

diff --git a/Documentation/gsdoc/NSAttributedString.html b/Documentation/gsdoc/NSAttributedString.html index a7b270968..fd29ba5bd 100644 --- a/Documentation/gsdoc/NSAttributedString.html +++ b/Documentation/gsdoc/NSAttributedString.html @@ -16,12 +16,16 @@

NSAttributedString

NSAttributedString

Declared in: Foundation/NSAttributedString.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

attribute:atIndex:effectiveRange:

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

Instances Methods

+

attribute:atIndex:effectiveRange:

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

-

attribute:atIndex:longestEffectiveRange:inRange:

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

attribute:atIndex:longestEffectiveRange:inRange:

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

-

attributedSubstringFromRange:

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

attributedSubstringFromRange:

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

-

attributesAtIndex:effectiveRange:

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

attributesAtIndex:effectiveRange:

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

-

attributesAtIndex:longestEffectiveRange:inRange:

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

attributesAtIndex:longestEffectiveRange:inRange:

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

-

initWithAttributedString:

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

initWithAttributedString:

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

-

initWithString:

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

initWithString:

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

-

initWithString:attributes:

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

initWithString:attributes:

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

-

isEqualToAttributedString:

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

isEqualToAttributedString:

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

-

length

+

length

- (unsigned int) length;

-

string

-- (NSString*) string;
+

string

+- (NSString*) string;

diff --git a/Documentation/gsdoc/NSAutoreleasePool.html b/Documentation/gsdoc/NSAutoreleasePool.html index 978eb75b4..7a278c0f9 100644 --- a/Documentation/gsdoc/NSAutoreleasePool.html +++ b/Documentation/gsdoc/NSAutoreleasePool.html @@ -16,23 +16,28 @@

NSAutoreleasePool

NSAutoreleasePool

Declared in: Foundation/NSAutoreleasePool.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

addObject:

+

Class Methods

+

addObject:

+ (void) addObject: (id)anObject;

-

addObject:

+

Instances Methods

+

addObject:

- (void) addObject: (id)anObject;
diff --git a/Documentation/gsdoc/NSBundle.html b/Documentation/gsdoc/NSBundle.html index 9a4206e37..16365c0d7 100644 --- a/Documentation/gsdoc/NSBundle.html +++ b/Documentation/gsdoc/NSBundle.html @@ -16,12 +16,16 @@

NSBundle

NSBundle

Declared in: Foundation/NSBundle.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

allBundles

-+ (NSArray*) allBundles;
+

Class Methods

+

allBundles

++ (NSArray*) allBundles;

-

allFrameworks

-+ (NSArray*) allFrameworks;
+

allFrameworks

++ (NSArray*) allFrameworks;

-

bundleForClass:

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

bundleForClass:

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

-

bundleWithPath:

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

bundleWithPath:

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

-

mainBundle

-+ (NSBundle*) mainBundle;
+

mainBundle

++ (NSBundle*) mainBundle;

-

pathForResource:ofType:inDirectory:

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

pathForResource:ofType:inDirectory:

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

-

bundlePath

-- (NSString*) bundlePath;
+

Instances Methods

+

bundlePath

+- (NSString*) bundlePath;

-

classNamed:

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

classNamed:

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

-

infoDictionary

-- (NSDictionary*) infoDictionary;
+

infoDictionary

+- (NSDictionary*) infoDictionary;

-

initWithPath:

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

initWithPath:

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

-

load

+

load

- (BOOL) load;

-

localizedStringForKey:value:

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

localizedStringForKey:value:

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

-

pathForResource:ofType:

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

pathForResource:ofType:

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

-

pathForResource:ofType:inDirectory:

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

pathForResource:ofType:inDirectory:

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

-

pathsForResourcesOfType:inDirectory:

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

pathsForResourcesOfType:inDirectory:

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

-

principalClass

+

principalClass

- (Class) principalClass;

-

resourcePath

-- (NSString*) resourcePath;
+

resourcePath

+- (NSString*) resourcePath;

diff --git a/Documentation/gsdoc/NSCalendarDate.html b/Documentation/gsdoc/NSCalendarDate.html index 2099680cc..14dc80598 100644 --- a/Documentation/gsdoc/NSCalendarDate.html +++ b/Documentation/gsdoc/NSCalendarDate.html @@ -16,12 +16,16 @@

NSCalendarDate

NSCalendarDate

Declared in: Foundation/NSDate.h

-

Inherits from: NSDate

+

Inherits from: NSDate

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

calendarDate

+

Class Methods

+

calendarDate

+ (id) calendarDate;

-

dateWithString:calendarFormat:

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

dateWithString:calendarFormat:

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

-

dateWithString:calendarFormat:

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

dateWithString:calendarFormat:

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

-

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

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

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

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

-

calendarFormat

-- (NSString*) calendarFormat;
+

Instances Methods

+

calendarFormat

+- (NSString*) calendarFormat;

-

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

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

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

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

-

dayOfCommonEra

+

dayOfCommonEra

- (int) dayOfCommonEra;

-

dayOfMonth

+

dayOfMonth

- (int) dayOfMonth;

-

dayOfWeek

+

dayOfWeek

- (int) dayOfWeek;

-

dayOfYear

+

dayOfYear

- (int) dayOfYear;

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

-

descriptionWithCalendarFormat:

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

descriptionWithCalendarFormat:

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

-

descriptionWithCalendarFormat:

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

descriptionWithCalendarFormat:

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

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

hourOfDay

+

hourOfDay

- (int) hourOfDay;

-

initWithString:

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

initWithString:

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

-

initWithString:calendarFormat:

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

initWithString:calendarFormat:

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

-

initWithString:calendarFormat:

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

initWithString:calendarFormat:

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

-

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

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

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

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

-

minuteOfHour

+

minuteOfHour

- (int) minuteOfHour;

-

monthOfYear

+

monthOfYear

- (int) monthOfYear;

-

secondOfMinute

+

secondOfMinute

- (int) secondOfMinute;

-

setCalendarFormat:

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

setCalendarFormat:

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

-

setTimeZone:

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

setTimeZone:

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

-

timeZone

-- (NSTimeZone*) timeZone;
+

timeZone

+- (NSTimeZone*) timeZone;

-

yearOfCommonEra

+

yearOfCommonEra

- (int) yearOfCommonEra;

-

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

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

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

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

diff --git a/Documentation/gsdoc/NSCharacterSet.html b/Documentation/gsdoc/NSCharacterSet.html index c7570d03a..42bc3c3da 100644 --- a/Documentation/gsdoc/NSCharacterSet.html +++ b/Documentation/gsdoc/NSCharacterSet.html @@ -16,12 +16,16 @@

NSCharacterSet

NSCharacterSet

Declared in: Foundation/NSCharacterSet.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

alphanumericCharacterSet

-+ (NSCharacterSet*) alphanumericCharacterSet;
+

Class Methods

+

alphanumericCharacterSet

++ (NSCharacterSet*) alphanumericCharacterSet;

-

characterSetWithBitmapRepresentation:

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

characterSetWithBitmapRepresentation:

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

-

characterSetWithCharactersInString:

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

characterSetWithCharactersInString:

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

-

characterSetWithContentsOfFile:

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

characterSetWithContentsOfFile:

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

-

characterSetWithRange:

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

characterSetWithRange:

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

-

controlCharacterSet

-+ (NSCharacterSet*) controlCharacterSet;
+

controlCharacterSet

++ (NSCharacterSet*) controlCharacterSet;

-

decimalDigitCharacterSet

-+ (NSCharacterSet*) decimalDigitCharacterSet;
+

decimalDigitCharacterSet

++ (NSCharacterSet*) decimalDigitCharacterSet;

-

decomposableCharacterSet

-+ (NSCharacterSet*) decomposableCharacterSet;
+

decomposableCharacterSet

++ (NSCharacterSet*) decomposableCharacterSet;

-

illegalCharacterSet

-+ (NSCharacterSet*) illegalCharacterSet;
+

illegalCharacterSet

++ (NSCharacterSet*) illegalCharacterSet;

-

letterCharacterSet

-+ (NSCharacterSet*) letterCharacterSet;
+

letterCharacterSet

++ (NSCharacterSet*) letterCharacterSet;

-

lowercaseLetterCharacterSet

-+ (NSCharacterSet*) lowercaseLetterCharacterSet;
+

lowercaseLetterCharacterSet

++ (NSCharacterSet*) lowercaseLetterCharacterSet;

-

nonBaseCharacterSet

-+ (NSCharacterSet*) nonBaseCharacterSet;
+

nonBaseCharacterSet

++ (NSCharacterSet*) nonBaseCharacterSet;

-

punctuationCharacterSet

-+ (NSCharacterSet*) punctuationCharacterSet;
+

punctuationCharacterSet

++ (NSCharacterSet*) punctuationCharacterSet;

-

uppercaseLetterCharacterSet

-+ (NSCharacterSet*) uppercaseLetterCharacterSet;
+

uppercaseLetterCharacterSet

++ (NSCharacterSet*) uppercaseLetterCharacterSet;

-

whitespaceAndNewlineCharacterSet

-+ (NSCharacterSet*) whitespaceAndNewlineCharacterSet;
+

whitespaceAndNewlineCharacterSet

++ (NSCharacterSet*) whitespaceAndNewlineCharacterSet;

-

whitespaceCharacterSet

-+ (NSCharacterSet*) whitespaceCharacterSet;
+

whitespaceCharacterSet

++ (NSCharacterSet*) whitespaceCharacterSet;

-

bitmapRepresentation

+

Instances Methods

+

bitmapRepresentation

- (NSData*) bitmapRepresentation;

-

characterIsMember:

+

characterIsMember:

- (BOOL) characterIsMember: (unichar)aCharacter;

-

invertedSet

-- (NSCharacterSet*) invertedSet;
+

invertedSet

+- (NSCharacterSet*) invertedSet;

diff --git a/Documentation/gsdoc/NSCoder.html b/Documentation/gsdoc/NSCoder.html index 7bda0156c..3649c9b33 100644 --- a/Documentation/gsdoc/NSCoder.html +++ b/Documentation/gsdoc/NSCoder.html @@ -16,12 +16,16 @@

NSCoder

NSCoder

Declared in: Foundation/NSCoder.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

decodeArrayOfObjCType:count:at:

+

Instances Methods

+

decodeArrayOfObjCType:count:at:

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

-

decodeBytesWithReturnedLength:

+

decodeBytesWithReturnedLength:

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

-

decodeDataObject

+

decodeDataObject

- (NSData*) decodeDataObject;

-

decodeObject

+

decodeObject

- (id) decodeObject;

-

decodePoint

+

decodePoint

- (NSPoint) decodePoint;

-

decodePropertyList

+

decodePropertyList

- (id) decodePropertyList;

-

decodeRect

+

decodeRect

- (NSRect) decodeRect;

-

decodeSize

+

decodeSize

- (NSSize) decodeSize;

-

decodeValueOfObjCType:

+

decodeValueOfObjCType:

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

-

decodeValuesOfObjCTypes:

+

decodeValuesOfObjCTypes:

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

-

encodeArrayOfObjCType:count:at:

+

encodeArrayOfObjCType:count:at:

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

-

encodeBycopyObject:

+

encodeBycopyObject:

- (void) encodeBycopyObject: (id)object;

-

encodeByrefObject:

+

encodeByrefObject:

- (void) encodeByrefObject: (id)object;

-

encodeBytes:

+

encodeBytes:

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

-

encodeConditionalObject:

+

encodeConditionalObject:

- (void) encodeConditionalObject: (id)object;

-

encodeDataObject:

+

encodeDataObject:

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

-

encodeObject:

+

encodeObject:

- (void) encodeObject: (id)object;

-

encodePoint:

+

encodePoint:

- (void) encodePoint: (NSPoint)point;

-

encodePropertyList:

+

encodePropertyList:

- (void) encodePropertyList: (id)aPropertyList;

-

encodeRect:

+

encodeRect:

- (void) encodeRect: (NSRect)rect;

-

encodeRootObject:

+

encodeRootObject:

- (void) encodeRootObject: (id)rootObject;

-

encodeSize:

+

encodeSize:

- (void) encodeSize: (NSSize)size;

-

encodeValueOfObjCType:

+

encodeValueOfObjCType:

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

-

encodeValuesOfObjCTypes:

+

encodeValuesOfObjCTypes:

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

-

objectZone

+

objectZone

- (NSZone*) objectZone;

-

setObjectZone:

+

setObjectZone:

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

-

systemVersion

+

systemVersion

- (unsigned int) systemVersion;

-

versionForClassName:

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

versionForClassName:

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

diff --git a/Documentation/gsdoc/NSConditionLock.html b/Documentation/gsdoc/NSConditionLock.html index be5b9644c..c8f54b8da 100644 --- a/Documentation/gsdoc/NSConditionLock.html +++ b/Documentation/gsdoc/NSConditionLock.html @@ -16,12 +16,16 @@

NSConditionLock

NSConditionLock

Declared in: Foundation/NSLock.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSLocking


+

Instance Variables

+ +

Methods

-
-

condition

+

Instances Methods

+

condition

- (int) condition;

-

initWithCondition:

+

initWithCondition:

- (id) initWithCondition: (int)condition;

-

lockBeforeDate:

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

lockBeforeDate:

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

-

lockWhenCondition:

+

lockWhenCondition:

- (void) lockWhenCondition: (int)condition;

-

lockWhenCondition:beforeDate:

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

lockWhenCondition:beforeDate:

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

-

tryLock

+

tryLock

- (BOOL) tryLock;

-

tryLockWhenCondition:

+

tryLockWhenCondition:

- (BOOL) tryLockWhenCondition: (int)condition;

-

unlockWithCondition:

+

unlockWithCondition:

- (void) unlockWithCondition: (int)condition;
diff --git a/Documentation/gsdoc/NSConnection.html b/Documentation/gsdoc/NSConnection.html index 99790d071..a2ac0cff1 100644 --- a/Documentation/gsdoc/NSConnection.html +++ b/Documentation/gsdoc/NSConnection.html @@ -16,7 +16,7 @@

NSConnection

NSConnection

Declared in: Foundation/NSConnection.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


@@ -25,6 +25,10 @@ objects in different processes, in different machines, or in different threads. +

Instance Variables

+ +

Methods

-
-

allConnections

-+ (NSArray*) allConnections;
+

Class Methods

+

allConnections

++ (NSArray*) allConnections;
Returns an array containing all the NSConnection objects known to the system. These connections will be valid at the time that the @@ -79,16 +83,16 @@ before you get to examine the array.
-

connectionWithReceivePort:

-+ (NSConnection*) connectionWithReceivePort: (NSPort*)receivePort;
+

connectionWithReceivePort:

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

connectionWithRegisteredName:host:

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

connectionWithRegisteredName:host:

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

@@ -107,8 +111,8 @@


-

connectionWithRegisteredName:host:usingNameServer:

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

connectionWithRegisteredName:host:usingNameServer:

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

@@ -148,14 +152,14 @@


-

currentConversation

+

currentConversation

+ (id) currentConversation;
Not implemented
-

defaultConnection

-+ (NSConnection*) defaultConnection;
+

defaultConnection

++ (NSConnection*) defaultConnection;
Returns the default NSConnection for the current thread.
@@ -166,8 +170,8 @@ connect to a remote process, but can be used to vend objects.
-

newRegisteringAtName:withRootObject:

-+ (NSConnection*) newRegisteringAtName: (NSString*)name withRootObject: (id)anObject;
+

newRegisteringAtName:withRootObject:

++ (NSConnection*) newRegisteringAtName: (NSString*)name withRootObject: (id)anObject;
Standards: GNUstep NotMacOS-X NotOpenStep
This used to be the preferred mechanism for creating a GNUstep @@ -192,8 +196,8 @@ Standards: GNUstep NotMacOS-X NotOpenStep

-

rootProxyForConnectionWithRegisteredName:host:

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

rootProxyForConnectionWithRegisteredName:host:

++ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)name host: (NSString*)host;
This method calls rootProxyForConnectionWithRegisteredName:host:usingNameServer: @@ -201,8 +205,8 @@ Standards: GNUstep NotMacOS-X NotOpenStep
the send port registered under name on host
-

rootProxyForConnectionWithRegisteredName:host:usingNameServer:

-+ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)name host: (NSString*)host usingNameServer: (NSPortNameServer*)server;
+

rootProxyForConnectionWithRegisteredName:host:usingNameServer:

++ (NSDistantObject*) rootProxyForConnectionWithRegisteredName: (NSString*)name host: (NSString*)host usingNameServer: (NSPortNameServer*)server;
Standards: GNUstep MacOS-X NotOpenStep
This method calls @@ -216,27 +220,28 @@ Standards: GNUstep MacOS-X NotOpenStep
not been set.
-

addRequestMode:

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

Instances Methods

+

addRequestMode:

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

addRunLoop:

-- (void) addRunLoop: (NSRunLoop*)loop;
+

addRunLoop:

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

delegate

+

delegate

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

enableMultipleThreads

+

enableMultipleThreads

- (void) enableMultipleThreads;
Sets the NSConnection configuration so that multiple threads may @@ -245,7 +250,7 @@ Standards: GNUstep MacOS-X NotOpenStep
This option is inherited by child connections.
-

independentConversationQueueing

+

independentConversationQueueing

- (BOOL) independentConversationQueueing;
Returns YES if the NSConnection is configured to @@ -254,9 +259,9 @@ Standards: GNUstep MacOS-X NotOpenStep
This option is inherited by child connections.
-

initWithReceivePort:sendPort:

+

initWithReceivePort:sendPort:

This is the designated initialiser
-- (id) initWithReceivePort: (NSPort*)recv sendPort: (NSPort*)send;
+- (id) initWithReceivePort: (NSPort*)recv sendPort: (NSPort*)send;
Initialises an NSConnection with recv and send.
@@ -304,7 +309,7 @@ Standards: GNUstep MacOS-X NotOpenStep

-

invalidate

+

invalidate

- (void) invalidate;
Marks the receiving NSConnection as invalid. @@ -316,21 +321,21 @@ Standards: GNUstep MacOS-X NotOpenStep
Invalidates all remote objects and local proxies.
-

isValid

+

isValid

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

localObjects

-- (NSArray*) localObjects;
+

localObjects

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

multipleThreadsEnabled

+

multipleThreadsEnabled

- (BOOL) multipleThreadsEnabled;
Returns YES if the connection permits @@ -338,23 +343,23 @@ Standards: GNUstep MacOS-X NotOpenStep
NO otherwise.
-

receivePort

-- (NSPort*) receivePort;
+

receivePort

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

registerName:

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

registerName:

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

registerName:withNameServer:

-- (BOOL) registerName: (NSString*)name withNameServer: (NSPortNameServer*)server;
+

registerName:withNameServer:

+- (BOOL) registerName: (NSString*)name withNameServer: (NSPortNameServer*)server;
Standards: GNUstep MacOS-X NotOpenStep
Registers the recieve port of the NSConnection as name and @@ -369,49 +374,49 @@ Standards: GNUstep MacOS-X NotOpenStep
NSConnection.
-

remoteObjects

-- (NSArray*) remoteObjects;
+

remoteObjects

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

removeRequestMode:

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

removeRequestMode:

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

removeRunLoop:

-- (void) removeRunLoop: (NSRunLoop*)loop;
+

removeRunLoop:

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

replyTimeout

+

replyTimeout

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

requestModes

-- (NSArray*) requestModes;
+

requestModes

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

requestTimeout

+

requestTimeout

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

rootObject

+

rootObject

- (id) rootObject;
Returns the object that is made available by this connection @@ -421,13 +426,13 @@ Standards: GNUstep MacOS-X NotOpenStep
Returns nil if no root object has been set.
-

rootProxy

-- (NSDistantObject*) rootProxy;
+

rootProxy

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

runInNewThread

+

runInNewThread

- (void) runInNewThread;
Removes the NSConnection from the current threads default @@ -435,13 +440,13 @@ Standards: GNUstep MacOS-X NotOpenStep
in it.
-

sendPort

-- (NSPort*) sendPort;
+

sendPort

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

setDelegate:

+

setDelegate:

- (void) setDelegate: (id)delegate;
Sets the NSConnection's delegate (without retaining it). @@ -450,7 +455,7 @@ Standards: GNUstep MacOS-X NotOpenStep
behavior by implementing methods in an informal protocol.
-

setIndependentConversationQueueing:

+

setIndependentConversationQueueing:

- (void) setIndependentConversationQueueing: (BOOL)flag;
Sets whether or not the NSConnection should handle requests @@ -463,7 +468,7 @@ Standards: GNUstep MacOS-X NotOpenStep
NB. careful - use of this option can cause deadlocks.
-

setReplyTimeout:

+

setReplyTimeout:

- (void) setReplyTimeout: (NSTimeInterval)seconds;
Sets the time interval that the NSConnection will wait for a @@ -471,21 +476,21 @@ Standards: GNUstep MacOS-X NotOpenStep
NSPortTimeoutException.
-

setRequestTimeout:

+

setRequestTimeout:

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

setRootObject:

+

setRootObject:

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

statistics

-- (NSDictionary*) statistics;
+

statistics

+- (NSDictionary*) statistics;
Returns an object containing various statistics for the NSConnection. @@ -520,8 +525,8 @@ Standards: GNUstep MacOS-X NotOpenStep

-

authenticateComponents:withData:

-- (BOOL) authenticateComponents: (NSMutableArray*)components withData: (NSData*)authentication;
+

authenticateComponents:withData:

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

@@ -555,8 +560,8 @@ Standards: GNUstep MacOS-X NotOpenStep


-

authenticationDataForComponents:

-- (NSData*) authenticationDataForComponents: (NSMutableArray*)components;
+

authenticationDataForComponents:

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

@@ -590,8 +595,8 @@ Standards: GNUstep MacOS-X NotOpenStep


-

connection:shouldMakeNewConnection:

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

connection:shouldMakeNewConnection:

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

@@ -613,8 +618,8 @@ Standards: GNUstep MacOS-X NotOpenStep


-

makeNewConnection:

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

makeNewConnection:

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

diff --git a/Documentation/gsdoc/NSCountedSet.html b/Documentation/gsdoc/NSCountedSet.html index 043bb11f4..b9860a8c1 100644 --- a/Documentation/gsdoc/NSCountedSet.html +++ b/Documentation/gsdoc/NSCountedSet.html @@ -16,7 +16,7 @@

NSCountedSet

NSCountedSet

Declared in: Foundation/NSSet.h

-

Inherits from: NSMutableSet

+

Inherits from: NSMutableSet

Conforms to: NSCoding


@@ -35,6 +35,10 @@

+

Instance Variables

+ +

Methods

-
-

addObject:

+

Instances Methods

+

addObject:

- (void) addObject: (id)anObject;
Adds an object to the set. If the set already contains an object @@ -58,19 +62,19 @@ than the new object being added.
-

allObjects

-- (NSArray*) allObjects;
+

allObjects

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

count

+

count

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

countForObject:

+

countForObject:

- (unsigned int) countForObject: (id)anObject;
Returns the number of times that an object that is equal to the @@ -78,36 +82,36 @@ been added to the set and not removed from it.
-

initWithArray:

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

initWithArray:

+- (id) initWithArray: (NSArray*)anArray;
Initialises a newly allocated set by adding all the objects in the supplied array to the set. Each object is added to the set as many times as it occurs in the array.
-

initWithCapacity:

+

initWithCapacity:

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

initWithSet:

-- (id) initWithSet: (NSSet*)aSet;
+

initWithSet:

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

objectEnumerator

-- (NSEnumerator*) objectEnumerator;
+

objectEnumerator

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

purge:

+

purge:

- (void) purge: (int)count;
Standards: NotOpenStep NotMacOS-X
@@ -126,7 +130,7 @@ Standards: NotOpenStep NotMacOS-X

-

removeObject:

+

removeObject:

- (void) removeObject: (id)anObject;
Decrements the count of the number of times that the specified @@ -135,7 +139,7 @@ Standards: NotOpenStep NotMacOS-X
becomes zero, the object is removed from the set.
-

unique:

+

unique:

- (id) unique: (id)anObject;
Standards: NotOpenStep NotMacOS-X
diff --git a/Documentation/gsdoc/NSDate.html b/Documentation/gsdoc/NSDate.html index 95a0d27ae..01f2829eb 100644 --- a/Documentation/gsdoc/NSDate.html +++ b/Documentation/gsdoc/NSDate.html @@ -16,12 +16,16 @@

NSDate

NSDate

Declared in: Foundation/NSDate.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

timeIntervalSinceReferenceDate

+

Class Methods

+

timeIntervalSinceReferenceDate

+ (NSTimeInterval) timeIntervalSinceReferenceDate;

-

date

+

date

+ (id) date;

-

dateWithString:

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

dateWithString:

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

-

dateWithTimeIntervalSinceNow:

+

dateWithTimeIntervalSinceNow:

+ (id) dateWithTimeIntervalSinceNow: (NSTimeInterval)seconds;

-

dateWithTimeIntervalSince1970:

+

dateWithTimeIntervalSince1970:

+ (id) dateWithTimeIntervalSince1970: (NSTimeInterval)seconds;

-

dateWithTimeIntervalSinceReferenceDate:

+

dateWithTimeIntervalSinceReferenceDate:

+ (id) dateWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds;

-

distantFuture

+

distantFuture

+ (id) distantFuture;

-

distantPast

+

distantPast

+ (id) distantPast;

-

addTimeInterval:

+

Instances Methods

+

addTimeInterval:

- (id) addTimeInterval: (NSTimeInterval)seconds;

-

compare:

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

compare:

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

-

dateWithCalendarFormat:

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

dateWithCalendarFormat:

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

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

-

descriptionWithCalendarFormat:timeZone:locale:

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

descriptionWithCalendarFormat:timeZone:locale:

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

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

earlierDate:

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

earlierDate:

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

-

init

+

init

- (id) init;

-

initWithString:

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

initWithString:

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

-

initWithTimeInterval:sinceDate:

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

initWithTimeInterval:sinceDate:

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

-

initWithTimeIntervalSinceNow:

+

initWithTimeIntervalSinceNow:

- (id) initWithTimeIntervalSinceNow: (NSTimeInterval)seconds;

-

initWithTimeIntervalSinceReferenceDate:

+

initWithTimeIntervalSinceReferenceDate:

- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds;

-

isEqualToDate:

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

isEqualToDate:

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

-

laterDate:

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

laterDate:

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

-

timeIntervalSinceDate:

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

timeIntervalSinceDate:

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

-

timeIntervalSince1970

+

timeIntervalSince1970

- (NSTimeInterval) timeIntervalSince1970;

-

timeIntervalSinceNow

+

timeIntervalSinceNow

- (NSTimeInterval) timeIntervalSinceNow;

-

timeIntervalSinceReferenceDate

+

timeIntervalSinceReferenceDate

- (NSTimeInterval) timeIntervalSinceReferenceDate;
diff --git a/Documentation/gsdoc/NSDateFormatter.html b/Documentation/gsdoc/NSDateFormatter.html index 4d590745c..cb73c0bab 100644 --- a/Documentation/gsdoc/NSDateFormatter.html +++ b/Documentation/gsdoc/NSDateFormatter.html @@ -16,30 +16,34 @@

NSDateFormatter

NSDateFormatter

Declared in: Foundation/NSDateFormatter.h

-

Inherits from: NSFormatter

+

Inherits from: NSFormatter

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

allowsNaturalLanguage

+

Instances Methods

+

allowsNaturalLanguage

- (BOOL) allowsNaturalLanguage;

-

dateFormat

-- (NSString*) dateFormat;
+

dateFormat

+- (NSString*) dateFormat;

-

initWithDateFormat:allowNaturalLanguage:

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

initWithDateFormat:allowNaturalLanguage:

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

diff --git a/Documentation/gsdoc/NSDecimalNumber.html b/Documentation/gsdoc/NSDecimalNumber.html index 343dc4b4a..fff695a61 100644 --- a/Documentation/gsdoc/NSDecimalNumber.html +++ b/Documentation/gsdoc/NSDecimalNumber.html @@ -16,10 +16,14 @@

NSDecimalNumber

NSDecimalNumber

Declared in: Foundation/NSDecimalNumber.h

-

Inherits from: NSNumber

+

Inherits from: NSNumber


+

Instance Variables

+ +

Methods

-
-

decimalNumberWithDecimal:

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

Class Methods

+

decimalNumberWithDecimal:

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

-

decimalNumberWithMantissa:exponent:isNegative:

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

decimalNumberWithMantissa:exponent:isNegative:

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

-

decimalNumberWithString:

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

decimalNumberWithString:

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

-

decimalNumberWithString:

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

decimalNumberWithString:

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

-

defaultBehavior

+

defaultBehavior

+ (id<NSDecimalNumberBehaviors>) defaultBehavior;

-

maximumDecimalNumber

-+ (NSDecimalNumber*) maximumDecimalNumber;
+

maximumDecimalNumber

++ (NSDecimalNumber*) maximumDecimalNumber;

-

minimumDecimalNumber

-+ (NSDecimalNumber*) minimumDecimalNumber;
+

minimumDecimalNumber

++ (NSDecimalNumber*) minimumDecimalNumber;

-

notANumber

-+ (NSDecimalNumber*) notANumber;
+

notANumber

++ (NSDecimalNumber*) notANumber;

-

one

-+ (NSDecimalNumber*) one;
+

one

++ (NSDecimalNumber*) one;

-

setDefaultBehavior:

+

setDefaultBehavior:

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

-

zero

-+ (NSDecimalNumber*) zero;
+

zero

++ (NSDecimalNumber*) zero;

-

compare:

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

Instances Methods

+

compare:

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

-

decimalNumberByAdding:

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

decimalNumberByAdding:

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

-

decimalNumberByAdding:

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

decimalNumberByAdding:

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

-

decimalNumberByDividingBy:

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

decimalNumberByDividingBy:

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

-

decimalNumberByDividingBy:

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

decimalNumberByDividingBy:

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

-

decimalNumberByMultiplyingBy:

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

decimalNumberByMultiplyingBy:

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

-

decimalNumberByMultiplyingBy:

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

decimalNumberByMultiplyingBy:

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

-

decimalNumberByMultiplyingByPowerOf10:

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

decimalNumberByMultiplyingByPowerOf10:

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

-

decimalNumberByMultiplyingByPowerOf10:withBehavior:

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

decimalNumberByMultiplyingByPowerOf10:withBehavior:

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

-

decimalNumberByRaisingToPower:

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

decimalNumberByRaisingToPower:

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

-

decimalNumberByRaisingToPower:withBehavior:

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

decimalNumberByRaisingToPower:withBehavior:

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

-

decimalNumberByRoundingAccordingToBehavior:

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

decimalNumberByRoundingAccordingToBehavior:

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

-

decimalNumberBySubtracting:

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

decimalNumberBySubtracting:

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

-

decimalNumberBySubtracting:

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

decimalNumberBySubtracting:

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

-

decimalValue

+

decimalValue

- (NSDecimal) decimalValue;

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

doubleValue

+

doubleValue

- (double) doubleValue;

-

initWithDecimal:

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

initWithDecimal:

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

-

initWithMantissa:exponent:isNegative:

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

initWithMantissa:exponent:isNegative:

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

-

initWithString:

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

initWithString:

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

-

initWithString:

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

initWithString:

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

-

objCType

+

objCType

- (const char*) objCType;
diff --git a/Documentation/gsdoc/NSDecimalNumberHandler.html b/Documentation/gsdoc/NSDecimalNumberHandler.html index a6eae8993..f87a64ae8 100644 --- a/Documentation/gsdoc/NSDecimalNumberHandler.html +++ b/Documentation/gsdoc/NSDecimalNumberHandler.html @@ -16,29 +16,34 @@

NSDecimalNumberHandler

NSDecimalNumberHandler

Declared in: Foundation/NSDecimalNumber.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSDecimalNumberBehaviors


+

Instance Variables

+ +

Methods

-
-

defaultDecimalNumberHandler

+

Class Methods

+

defaultDecimalNumberHandler

+ (id) defaultDecimalNumberHandler;

-

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

+

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

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

-

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

+

Instances Methods

+

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

- (id) initWithRoundingMode: (NSRoundingMode)roundingMode scale: (short)scale raiseOnExactness: (BOOL)raiseOnExactness raiseOnOverflow: (BOOL)raiseOnOverflow raiseOnUnderflow: (BOOL)raiseOnUnderflow raiseOnDivideByZero: (BOOL)raiseOnDivideByZero;
diff --git a/Documentation/gsdoc/NSDeserializer.html b/Documentation/gsdoc/NSDeserializer.html index ad4ca4cb9..5b5ae8372 100644 --- a/Documentation/gsdoc/NSDeserializer.html +++ b/Documentation/gsdoc/NSDeserializer.html @@ -16,35 +16,39 @@

NSDeserializer

NSDeserializer

Declared in: Foundation/NSSerialization.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

deserializePropertyListFromData:atCursor:mutableContainers:

+

Class Methods

+

deserializePropertyListFromData:atCursor:mutableContainers:

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

-

deserializePropertyListFromData:mutableContainers:

+

deserializePropertyListFromData:mutableContainers:

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

-

deserializePropertyListLazilyFromData:atCursor:length:mutableContainers:

+

deserializePropertyListLazilyFromData:atCursor:length:mutableContainers:

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

-

uniquing:

+

uniquing:

+ (void) uniquing: (BOOL)flag;
Standards: GNUstep NotOpenStep NotMacOS-X
diff --git a/Documentation/gsdoc/NSDictionary.html b/Documentation/gsdoc/NSDictionary.html index 78429e23b..908451ec7 100644 --- a/Documentation/gsdoc/NSDictionary.html +++ b/Documentation/gsdoc/NSDictionary.html @@ -18,7 +18,7 @@

NSDictionary

NSDictionary

Declared in: Foundation/NSDictionary.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding, NSCopying, NSMutableCopying


@@ -26,6 +26,10 @@ +

Instance Variables

+ +

Methods

-
-

allocWithZone:

+

Class Methods

+

allocWithZone:

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

-

dictionary

+

dictionary

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

dictionaryWithContentsOfFile:

-+ (id) dictionaryWithContentsOfFile: (NSString*)path;
+

dictionaryWithContentsOfFile:

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

dictionaryWithDictionary:

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

dictionaryWithDictionary:

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

dictionaryWithObject:forKey:

+

dictionaryWithObject:forKey:

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

dictionaryWithObjects:forKey:

-+ (id) dictionaryWithObjects: (NSArray*)objects forKey: (NSArray*)keys;
+

dictionaryWithObjects:forKey:

++ (id) dictionaryWithObjects: (NSArray*)objects forKey: (NSArray*)keys;
Returns a dictionary created using the given objects and keys. The two arrays must have the same size. The n th element of the objects array is associated with the n th element of the keys array.
-

dictionaryWithObjects:forKeys:count:

+

dictionaryWithObjects:forKeys:count:

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

dictionaryWithObjectsAndKeys:

+

dictionaryWithObjectsAndKeys:

+ (id) dictionaryWithObjectsAndKeys: (id)object, ...;
Returns a dictionary created using the list given as argument. @@ -118,164 +122,165 @@ Thus, the list's length must be pair.
-

allKeys

-- (NSArray*) allKeys;
+

Instances Methods

+

allKeys

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

allKeysForObject:

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

allKeysForObject:

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

allValues

-- (NSArray*) allValues;
+

allValues

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

count

+

count

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

descriptionInStringsFileFormat

-- (NSString*) descriptionInStringsFileFormat;
+

descriptionInStringsFileFormat

+- (NSString*) descriptionInStringsFileFormat;

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

fileGroupOwnerAccountName

-- (NSString*) fileGroupOwnerAccountName;
+

fileGroupOwnerAccountName

+- (NSString*) fileGroupOwnerAccountName;

-

fileModificationDate

-- (NSDate*) fileModificationDate;
+

fileModificationDate

+- (NSDate*) fileModificationDate;

-

fileOwnerAccountName

-- (NSString*) fileOwnerAccountName;
+

fileOwnerAccountName

+- (NSString*) fileOwnerAccountName;

-

filePosixPermissions

+

filePosixPermissions

- (unsigned long) filePosixPermissions;

-

fileSize

+

fileSize

- (unsigned long long) fileSize;

-

fileSystemFileNumber

+

fileSystemFileNumber

- (unsigned long) fileSystemFileNumber;

-

fileSystemNumber

+

fileSystemNumber

- (unsigned long) fileSystemNumber;

-

fileType

-- (NSString*) fileType;
+

fileType

+- (NSString*) fileType;

-

initWithContentsOfFile:

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

initWithContentsOfFile:

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

initWithDictionary:

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

initWithDictionary:

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

initWithObjects:

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

initWithObjects:

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

initWithObjects:forKeys:count:

+

initWithObjects:forKeys:count:

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

initWithObjectsAndKeys:

+

initWithObjectsAndKeys:

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

isEqualToDictionary:

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

isEqualToDictionary:

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

-

keyEnumerator

-- (NSEnumerator*) keyEnumerator;
+

keyEnumerator

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

keysSortedByValueUsingSelector:

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

keysSortedByValueUsingSelector:

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

-

objectEnumerator

-- (NSEnumerator*) objectEnumerator;
+

objectEnumerator

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

objectForKey:

+

objectForKey:

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

objectsForKeys:notFoundMarker:

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

objectsForKeys:notFoundMarker:

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

-

writeToFile:atomically:

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

writeToFile:atomically:

+- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)flag;
diff --git a/Documentation/gsdoc/NSDirectoryEnumerator.html b/Documentation/gsdoc/NSDirectoryEnumerator.html index d19249c15..e96973168 100644 --- a/Documentation/gsdoc/NSDirectoryEnumerator.html +++ b/Documentation/gsdoc/NSDirectoryEnumerator.html @@ -16,29 +16,33 @@

NSDirectoryEnumerator

NSDirectoryEnumerator

Declared in: Foundation/NSFileManager.h

-

Inherits from: NSEnumerator

+

Inherits from: NSEnumerator

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

directoryAttributes

-- (NSDictionary*) directoryAttributes;
+

Instances Methods

+

directoryAttributes

+- (NSDictionary*) directoryAttributes;

-

fileAttributes

-- (NSDictionary*) fileAttributes;
+

fileAttributes

+- (NSDictionary*) fileAttributes;

-

skipDescendents

+

skipDescendents

- (void) skipDescendents;
diff --git a/Documentation/gsdoc/NSDistantObject.html b/Documentation/gsdoc/NSDistantObject.html index 51fabfe55..ade22b297 100644 --- a/Documentation/gsdoc/NSDistantObject.html +++ b/Documentation/gsdoc/NSDistantObject.html @@ -16,12 +16,16 @@

NSDistantObject

NSDistantObject

Declared in: Foundation/NSDistantObject.h

-

Inherits from: NSProxy

+

Inherits from: NSProxy

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

proxyWithLocal:connection:

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

Class Methods

+

proxyWithLocal:connection:

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

-

proxyWithTarget:

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

proxyWithTarget:

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

-

connectionForProxy

-- (NSConnection*) connectionForProxy;
+

Instances Methods

+

connectionForProxy

+- (NSConnection*) connectionForProxy;

-

initWithLocal:connection:

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

initWithLocal:connection:

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

-

initWithTarget:

+

initWithTarget:

- (id) initWithTarget: (id)remoteObject;

-

setProtocolForProxy:

+

setProtocolForProxy:

- (void) setProtocolForProxy: (Protocol*)aProtocol;
diff --git a/Documentation/gsdoc/NSDistantObjectRequest.html b/Documentation/gsdoc/NSDistantObjectRequest.html index 7af818d83..04dacf99b 100644 --- a/Documentation/gsdoc/NSDistantObjectRequest.html +++ b/Documentation/gsdoc/NSDistantObjectRequest.html @@ -16,34 +16,38 @@

NSDistantObjectRequest

NSDistantObjectRequest

Declared in: Foundation/NSConnection.h

-

Inherits from: NSObject

+

Inherits from: NSObject


+

Instance Variables

+ +

Methods

-
-

connection

-- (NSConnection*) connection;
+

Instances Methods

+

connection

+- (NSConnection*) connection;

-

conversation

+

conversation

- (id) conversation;

-

invocation

-- (NSInvocation*) invocation;
+

invocation

+- (NSInvocation*) invocation;

-

replyWithException:

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

replyWithException:

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

diff --git a/Documentation/gsdoc/NSDistributedLock.html b/Documentation/gsdoc/NSDistributedLock.html index c46edf890..aac92bd5d 100644 --- a/Documentation/gsdoc/NSDistributedLock.html +++ b/Documentation/gsdoc/NSDistributedLock.html @@ -16,12 +16,16 @@

NSDistributedLock

NSDistributedLock

Declared in: Foundation/NSDistributedLock.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

lockWithPath:

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

Class Methods

+

lockWithPath:

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

-

breakLock

+

Instances Methods

+

breakLock

- (void) breakLock;

-

initWithPath:

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

initWithPath:

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

-

lockDate

-- (NSDate*) lockDate;
+

lockDate

+- (NSDate*) lockDate;

-

tryLock

+

tryLock

- (BOOL) tryLock;

-

unlock

+

unlock

- (void) unlock;
diff --git a/Documentation/gsdoc/NSDistributedNotificationCenter.html b/Documentation/gsdoc/NSDistributedNotificationCenter.html index 908eb587b..b987dac4f 100644 --- a/Documentation/gsdoc/NSDistributedNotificationCenter.html +++ b/Documentation/gsdoc/NSDistributedNotificationCenter.html @@ -16,12 +16,16 @@

NSDistributedNotificationCenter

NSDistributedNotificationCenter

Declared in: Foundation/NSDistributedNotificationCenter.h

-

Inherits from: NSNotificationCenter

+

Inherits from: NSNotificationCenter

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

defaultCenter

-+ (NSNotificationCenter*) defaultCenter;
+

Class Methods

+

defaultCenter

++ (NSNotificationCenter*) defaultCenter;

-

notificationCenterForType:

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

notificationCenterForType:

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

-

addObserver:selector:name:

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

Instances Methods

+

addObserver:selector:name:

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

-

addObserver:selector:name:object:suspensionBehavior:

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

addObserver:selector:name:object:suspensionBehavior:

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

-

postNotification:

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

postNotification:

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

-

postNotificationName:

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

postNotificationName:

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

-

postNotificationName:object:userInfo:

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

postNotificationName:object:userInfo:

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

-

postNotificationName:object:userInfo:deliverImmediately:

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

postNotificationName:object:userInfo:deliverImmediately:

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

-

removeObserver:name:object:

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

removeObserver:name:object:

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

-

setSuspended:

+

setSuspended:

- (void) setSuspended: (BOOL)suspended;

-

suspended

+

suspended

- (BOOL) suspended;
diff --git a/Documentation/gsdoc/NSEnumerator.html b/Documentation/gsdoc/NSEnumerator.html index 467028f46..afd6285f1 100644 --- a/Documentation/gsdoc/NSEnumerator.html +++ b/Documentation/gsdoc/NSEnumerator.html @@ -16,23 +16,27 @@

NSEnumerator

NSEnumerator

Declared in: Foundation/NSUtilities.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

allObjects

-- (NSArray*) allObjects;
+

Instances Methods

+

allObjects

+- (NSArray*) allObjects;

-

nextObject

+

nextObject

- (id) nextObject;
diff --git a/Documentation/gsdoc/NSException.html b/Documentation/gsdoc/NSException.html index 4ef89a09d..281bc3848 100644 --- a/Documentation/gsdoc/NSException.html +++ b/Documentation/gsdoc/NSException.html @@ -16,12 +16,16 @@

NSException

NSException

Declared in: Foundation/NSException.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

exceptionWithName:reason:userInfo:

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

Class Methods

+

exceptionWithName:reason:userInfo:

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

-

raise:format:

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

raise:format:

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

-

raise:format:arguments:

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

raise:format:arguments:

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

-

description

-- (NSString*) description;
+

Instances Methods

+

description

+- (NSString*) description;

-

initWithName:reason:userInfo:

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

initWithName:reason:userInfo:

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

-

name

-- (NSString*) name;
+

name

+- (NSString*) name;

-

raise

+

raise

- (void) raise;

-

reason

-- (NSString*) reason;
+

reason

+- (NSString*) reason;

-

userInfo

-- (NSDictionary*) userInfo;
+

userInfo

+- (NSDictionary*) userInfo;

diff --git a/Documentation/gsdoc/NSFileHandle.html b/Documentation/gsdoc/NSFileHandle.html index 6c89aac61..0a0df50c4 100644 --- a/Documentation/gsdoc/NSFileHandle.html +++ b/Documentation/gsdoc/NSFileHandle.html @@ -16,12 +16,16 @@

NSFileHandle

NSFileHandle

Declared in: Foundation/NSFileHandle.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

acceptConnectionInBackgroundAndNotify

+

Instances Methods

+

acceptConnectionInBackgroundAndNotify

- (void) acceptConnectionInBackgroundAndNotify;

-

acceptConnectionInBackgroundAndNotifyForModes:

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

acceptConnectionInBackgroundAndNotifyForModes:

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

-

availableData

+

availableData

- (NSData*) availableData;

-

closeFile

+

closeFile

- (void) closeFile;

-

fileDescriptor

+

fileDescriptor

- (int) fileDescriptor;

-

initWithFileDescriptor:

+

initWithFileDescriptor:

- (id) initWithFileDescriptor: (int)fileDescriptor;

-

initWithFileDescriptor:

+

initWithFileDescriptor:

- (id) initWithFileDescriptor: (int)fileDescriptor;

-

offsetInFile

+

offsetInFile

- (unsigned long long) offsetInFile;

-

readDataOfLength:

+

readDataOfLength:

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

-

readDataToEndFile

+

readDataToEndFile

- (NSData*) readDataToEndFile;

-

readInBackgroundAndNotify

+

readInBackgroundAndNotify

- (void) readInBackgroundAndNotify;

-

readInBackgroundAndNotifyForModes:

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

readInBackgroundAndNotifyForModes:

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

-

readToEndOfFileInBackgroundAndNotify

+

readToEndOfFileInBackgroundAndNotify

- (void) readToEndOfFileInBackgroundAndNotify;

-

readToEndOfFileInBackgroundAndNotifyForModes:

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

readToEndOfFileInBackgroundAndNotifyForModes:

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

-

seekToEndOfFile

+

seekToEndOfFile

- (unsigned long long) seekToEndOfFile;

-

seekToFileOffset:

+

seekToFileOffset:

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

-

synchronizeFile

+

synchronizeFile

- (void) synchronizeFile;

-

truncateFileAtOffset:

+

truncateFileAtOffset:

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

-

waitForDataInBackgroundAndNotify

+

waitForDataInBackgroundAndNotify

- (void) waitForDataInBackgroundAndNotify;

-

waitForDataInBackgroundAndNotifyForModes:

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

waitForDataInBackgroundAndNotifyForModes:

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

-

writeData:

+

writeData:

- (void) writeData: (NSData*)data;
diff --git a/Documentation/gsdoc/NSFileManager.html b/Documentation/gsdoc/NSFileManager.html index 2c4640eb2..f3af9ceb0 100644 --- a/Documentation/gsdoc/NSFileManager.html +++ b/Documentation/gsdoc/NSFileManager.html @@ -16,12 +16,16 @@

NSFileManager

NSFileManager

Declared in: Foundation/NSFileManager.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

defaultManager

-+ (NSFileManager*) defaultManager;
+

Class Methods

+

defaultManager

++ (NSFileManager*) defaultManager;

-

changeCurrentDirectoryPath:

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

Instances Methods

+

changeCurrentDirectoryPath:

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

-

changeFileAttributes:

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

changeFileAttributes:

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

-

contentsAtPath:

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

contentsAtPath:

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

-

contentsEqualAtPath:andPath:

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

contentsEqualAtPath:andPath:

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

-

copyPath:toPath:handler:

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

copyPath:toPath:handler:

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

-

createDirectoryAtPath:attributes:

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

createDirectoryAtPath:attributes:

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

-

createFileAtPath:contents:attributes:

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

createFileAtPath:contents:attributes:

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

-

createSymbolicLinkAtPath:pathContent:

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

createSymbolicLinkAtPath:pathContent:

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

-

currentDirectoryPath

-- (NSString*) currentDirectoryPath;
+

currentDirectoryPath

+- (NSString*) currentDirectoryPath;

-

directoryContentsAtPath:

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

directoryContentsAtPath:

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

-

enumeratorAtPath:

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

enumeratorAtPath:

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

-

fileAttributesAtPath:traverseLink:

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

fileAttributesAtPath:traverseLink:

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

-

fileExistsAtPath:

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

fileExistsAtPath:

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

-

fileExistsAtPath:isDirectory:

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

fileExistsAtPath:isDirectory:

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

-

fileSystemAttributesAtPath:

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

fileSystemAttributesAtPath:

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

-

fileSystemRepresentationWithPath:

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

fileSystemRepresentationWithPath:

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

-

isDeletableFileAtPath:

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

isDeletableFileAtPath:

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

-

isExecutableFileAtPath:

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

isExecutableFileAtPath:

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

-

isReadableFileAtPath:

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

isReadableFileAtPath:

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

-

isWritableFileAtPath:

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

isWritableFileAtPath:

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

-

linkPath:toPath:handler:

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

linkPath:toPath:handler:

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

-

movePath:toPath:handler:

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

movePath:toPath:handler:

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

-

pathContentOfSymbolicLinkAtPath:

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

pathContentOfSymbolicLinkAtPath:

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

-

removeFileAtPath:handler:

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

removeFileAtPath:handler:

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

-

stringWithFileSystemRepresentation:

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

stringWithFileSystemRepresentation:

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

-

subpathsAtPath:

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

subpathsAtPath:

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

-

fileManager:shouldProceedAfterError:

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

fileManager:shouldProceedAfterError:

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

-

fileManager:willProcessPath:

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

fileManager:willProcessPath:

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

diff --git a/Documentation/gsdoc/NSFormatter.html b/Documentation/gsdoc/NSFormatter.html index 39bdb2365..ef14ef8ba 100644 --- a/Documentation/gsdoc/NSFormatter.html +++ b/Documentation/gsdoc/NSFormatter.html @@ -16,12 +16,16 @@

NSFormatter

NSFormatter

Declared in: Foundation/NSFormatter.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

attributedStringForObjectValue:withDefaultAttributes:

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

Instances Methods

+

attributedStringForObjectValue:withDefaultAttributes:

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

-

editingStringForObjectValue:

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

editingStringForObjectValue:

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

-

getObjectValue:forString:errorDescription:

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

getObjectValue:forString:errorDescription:

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

-

isPartialStringValid:

+

isPartialStringValid:

- (BOOL) isPartialStringValid: ;

-

stringForObjectValue:

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

stringForObjectValue:

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

diff --git a/Documentation/gsdoc/NSHost.html b/Documentation/gsdoc/NSHost.html index 89ca38457..ca3003fef 100644 --- a/Documentation/gsdoc/NSHost.html +++ b/Documentation/gsdoc/NSHost.html @@ -16,12 +16,16 @@

NSHost

NSHost

Declared in: Foundation/NSHost.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

currentHost

-+ (NSHost*) currentHost;
+

Class Methods

+

currentHost

++ (NSHost*) currentHost;

-

flushHostCache

+

flushHostCache

+ (void) flushHostCache;

-

hostWithAddress:

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

hostWithAddress:

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

-

hostWithName:

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

hostWithName:

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

-

isHostCacheEnabled

+

isHostCacheEnabled

+ (BOOL) isHostCacheEnabled;

-

setHostCacheEnabled:

+

setHostCacheEnabled:

+ (void) setHostCacheEnabled: (BOOL)flag;

-

address

-- (NSString*) address;
+

Instances Methods

+

address

+- (NSString*) address;

-

addresses

-- (NSArray*) addresses;
+

addresses

+- (NSArray*) addresses;

-

isEqualToHost:

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

isEqualToHost:

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

-

name

-- (NSString*) name;
+

name

+- (NSString*) name;

-

names

-- (NSArray*) names;
+

names

+- (NSArray*) names;

diff --git a/Documentation/gsdoc/NSInvocation.html b/Documentation/gsdoc/NSInvocation.html index ba7b67635..1a7397e00 100644 --- a/Documentation/gsdoc/NSInvocation.html +++ b/Documentation/gsdoc/NSInvocation.html @@ -16,12 +16,16 @@

NSInvocation

NSInvocation

Declared in: Foundation/NSInvocation.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

invocationWithMethodSignature:

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

Class Methods

+

invocationWithMethodSignature:

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

-

argumentsRetained

+

Instances Methods

+

argumentsRetained

- (BOOL) argumentsRetained;

-

getArgument:atIndex:

+

getArgument:atIndex:

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

-

getReturnValue:

+

getReturnValue:

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

-

invoke

+

invoke

- (void) invoke;

-

invokeWithTarget:

+

invokeWithTarget:

- (void) invokeWithTarget: (id)anObject;

-

methodSignature

-- (NSMethodSignature*) methodSignature;
+

methodSignature

+- (NSMethodSignature*) methodSignature;

-

retainArguments

+

retainArguments

- (void) retainArguments;

-

selector

+

selector

- (SEL) selector;

-

setArgument:atIndex:

+

setArgument:atIndex:

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

-

setReturnValue:

+

setReturnValue:

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

-

setSelector:

+

setSelector:

- (void) setSelector: (SEL)selector;

-

setTarget:

+

setTarget:

- (void) setTarget: (id)anObject;

-

target

+

target

- (id) target;
diff --git a/Documentation/gsdoc/NSLock.html b/Documentation/gsdoc/NSLock.html index 51f119896..7b5173e87 100644 --- a/Documentation/gsdoc/NSLock.html +++ b/Documentation/gsdoc/NSLock.html @@ -16,23 +16,27 @@

NSLock

NSLock

Declared in: Foundation/NSLock.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSLocking


+

Instance Variables

+ +

Methods

-
-

lockBeforeDate:

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

Instances Methods

+

lockBeforeDate:

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

-

tryLock

+

tryLock

- (BOOL) tryLock;
diff --git a/Documentation/gsdoc/NSMethodSignature.html b/Documentation/gsdoc/NSMethodSignature.html index 6606cacfe..f08741dbe 100644 --- a/Documentation/gsdoc/NSMethodSignature.html +++ b/Documentation/gsdoc/NSMethodSignature.html @@ -16,12 +16,16 @@

NSMethodSignature

NSMethodSignature

Declared in: Foundation/NSMethodSignature.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

getArgumentTypeAtIndex:

+

Instances Methods

+

getArgumentTypeAtIndex:

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

-

frameLength

+

frameLength

- (unsigned int) frameLength;

-

isOneway

+

isOneway

- (BOOL) isOneway;

-

methodReturnLength

+

methodReturnLength

- (unsigned int) methodReturnLength;

-

methodReturnType

+

methodReturnType

- (char*) methodReturnType;

-

numberOfArguments

+

numberOfArguments

- (unsigned int) numberOfArguments;
diff --git a/Documentation/gsdoc/NSMutableArray.html b/Documentation/gsdoc/NSMutableArray.html index ca460fbf5..c393b85b4 100644 --- a/Documentation/gsdoc/NSMutableArray.html +++ b/Documentation/gsdoc/NSMutableArray.html @@ -16,12 +16,16 @@

NSMutableArray

NSMutableArray

Declared in: Foundation/NSArray.h

-

Inherits from: NSArray

+

Inherits from: NSArray

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

arrayWithCapacity:

+

Class Methods

+

arrayWithCapacity:

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

-

addObject:

+

Instances Methods

+

addObject:

- (void) addObject: (id)anObject;

-

addObjectsFromArray:

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

addObjectsFromArray:

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

-

initWithCapacity:

+

initWithCapacity:

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

-

insertObject:

+

insertObject:

- (void) insertObject: (id)anObject;

-

removeAllObjects

+

removeAllObjects

- (void) removeAllObjects;

-

removeLastObject

+

removeLastObject

- (void) removeLastObject;

-

removeObject:

+

removeObject:

- (void) removeObject: (id)anObject;

-

removeObject:

+

removeObject:

- (void) removeObject: (id)anObject;

-

removeObjectAtIndex:

+

removeObjectAtIndex:

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

-

removeObjectIdenticalTo:

+

removeObjectIdenticalTo:

- (void) removeObjectIdenticalTo: (id)anObject;

-

removeObjectIdenticalTo:

+

removeObjectIdenticalTo:

- (void) removeObjectIdenticalTo: (id)anObject;

-

removeObjectsFromIndices:numIndices:

+

removeObjectsFromIndices:numIndices:

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

-

removeObjectsInArray:

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

removeObjectsInArray:

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

-

removeObjectsInRange:

+

removeObjectsInRange:

- (void) removeObjectsInRange: (NSRange)aRange;

-

replaceObjectAtIndex:withObject:

+

replaceObjectAtIndex:withObject:

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

-

replaceObjectsInRange:withObjectsFromArray:

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

replaceObjectsInRange:withObjectsFromArray:

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

-

replaceObjectsInRange:withObjectsFromArray:

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

replaceObjectsInRange:withObjectsFromArray:

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

-

setArray:

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

setArray:

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

-

sortUsingFunction:context:

+

sortUsingFunction:context:

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

-

sortUsingSelector:

+

sortUsingSelector:

- (void) sortUsingSelector: (SEL)comparator;
diff --git a/Documentation/gsdoc/NSMutableAttributedString.html b/Documentation/gsdoc/NSMutableAttributedString.html index 0128dc6f5..eb615b233 100644 --- a/Documentation/gsdoc/NSMutableAttributedString.html +++ b/Documentation/gsdoc/NSMutableAttributedString.html @@ -16,12 +16,16 @@

NSMutableAttributedString

NSMutableAttributedString

Declared in: Foundation/NSAttributedString.h

-

Inherits from: NSAttributedString

+

Inherits from: NSAttributedString

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

addAttribute:value:

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

Instances Methods

+

addAttribute:value:

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

-

addAttributes:

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

addAttributes:

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

-

appendAttributedString:

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

appendAttributedString:

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

-

beginEditing

+

beginEditing

- (void) beginEditing;

-

deleteCharactersInRange:

+

deleteCharactersInRange:

- (void) deleteCharactersInRange: (NSRange)aRange;

-

endEditing

+

endEditing

- (void) endEditing;

-

insertAttributedString:

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

insertAttributedString:

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

-

mutableString

-- (NSMutableString*) mutableString;
+

mutableString

+- (NSMutableString*) mutableString;

-

removeAttribute:range:

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

removeAttribute:range:

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

-

replaceCharactersInRange:withAttributedString:

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

replaceCharactersInRange:withAttributedString:

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

-

replaceCharactersInRange:withString:

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

replaceCharactersInRange:withString:

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

-

setAttributedString:

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

setAttributedString:

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

-

setAttributes:

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

setAttributes:

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

diff --git a/Documentation/gsdoc/NSMutableCharacterSet.html b/Documentation/gsdoc/NSMutableCharacterSet.html index 019bcae22..9f2d48776 100644 --- a/Documentation/gsdoc/NSMutableCharacterSet.html +++ b/Documentation/gsdoc/NSMutableCharacterSet.html @@ -16,12 +16,16 @@

NSMutableCharacterSet

NSMutableCharacterSet

Declared in: Foundation/NSCharacterSet.h

-

Inherits from: NSCharacterSet

+

Inherits from: NSCharacterSet

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

addCharactersInRange:

+

Instances Methods

+

addCharactersInRange:

- (void) addCharactersInRange: (NSRange)aRange;

-

addCharactersInString:

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

addCharactersInString:

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

-

formIntersectionWithCharacterSet:

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

formIntersectionWithCharacterSet:

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

-

formUnionWithCharacterSet:

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

formUnionWithCharacterSet:

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

-

invert

+

invert

- (void) invert;

-

removeCharactersInRange:

+

removeCharactersInRange:

- (void) removeCharactersInRange: (NSRange)aRange;

-

removeCharactersInString:

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

removeCharactersInString:

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

diff --git a/Documentation/gsdoc/NSMutableData.html b/Documentation/gsdoc/NSMutableData.html index 50e18d54e..5a24f4726 100644 --- a/Documentation/gsdoc/NSMutableData.html +++ b/Documentation/gsdoc/NSMutableData.html @@ -21,6 +21,10 @@
+

Instance Variables

+ +

Methods

-
-

allocWithZone:

+

Class Methods

+

allocWithZone:

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

-

dataWithCapacity:

+

dataWithCapacity:

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

-

dataWithLength:

+

dataWithLength:

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

-

appendBytes:length:

+

Instances Methods

+

appendBytes:length:

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

-

appendData:

+

appendData:

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

-

increaseLengthBy:

+

increaseLengthBy:

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

-

initWithCapacity:

+

initWithCapacity:

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

-

initWithLength:

+

initWithLength:

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

-

mutableBytes

+

mutableBytes

- (void*) mutableBytes;

-

replaceBytesInRange:withBytes:

+

replaceBytesInRange:withBytes:

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

-

resetBytesInRange:

+

resetBytesInRange:

- (void) resetBytesInRange: (NSRange)range;

-

serializeAlignedBytesLength:

+

serializeAlignedBytesLength:

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

-

serializeDataAt:ofObjCType:context:

+

serializeDataAt:ofObjCType:context:

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

-

serializeInt:

+

serializeInt:

- (void) serializeInt: (int)value;

-

serializeInt:atIndex:

+

serializeInt:atIndex:

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

-

serializeInts:

+

serializeInts:

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

-

serializeInts:count:atIndex:

+

serializeInts:count:atIndex:

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

-

setData:

+

setData:

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

-

setLength:

+

setLength:

- (void) setLength: (unsigned int)length;
diff --git a/Documentation/gsdoc/NSMutableDictionary.html b/Documentation/gsdoc/NSMutableDictionary.html index a79927e72..01868f255 100644 --- a/Documentation/gsdoc/NSMutableDictionary.html +++ b/Documentation/gsdoc/NSMutableDictionary.html @@ -16,12 +16,16 @@

NSMutableDictionary

NSMutableDictionary

Declared in: Foundation/NSDictionary.h

-

Inherits from: NSDictionary

+

Inherits from: NSDictionary

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

allocWithZone:

+

Class Methods

+

allocWithZone:

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

-

dictionaryWithCapacity:

+

dictionaryWithCapacity:

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

-

addEntriesFromDictionary:

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

Instances Methods

+

addEntriesFromDictionary:

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

-

initWithCapacity:

+

initWithCapacity:

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

-

removeAllObjects

+

removeAllObjects

- (void) removeAllObjects;

-

removeObjectForKey:

+

removeObjectForKey:

- (void) removeObjectForKey: (id)aKey;

-

removeObjectsForKeys:

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

removeObjectsForKeys:

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

-

setDictionary:

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

setDictionary:

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

-

setObject:

+

setObject:

- (void) setObject: (id)anObject;
diff --git a/Documentation/gsdoc/NSMutableSet.html b/Documentation/gsdoc/NSMutableSet.html index bf05f1e84..504e25067 100644 --- a/Documentation/gsdoc/NSMutableSet.html +++ b/Documentation/gsdoc/NSMutableSet.html @@ -16,12 +16,16 @@

NSMutableSet

NSMutableSet

Declared in: Foundation/NSSet.h

-

Inherits from: NSSet

+

Inherits from: NSSet

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

allocWithZone:

+

Class Methods

+

allocWithZone:

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

-

setWithCapacity:

+

setWithCapacity:

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

-

addObject:

+

Instances Methods

+

addObject:

- (void) addObject: (id)anObject;

-

addObjectsFromArray:

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

addObjectsFromArray:

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

-

initWithCapacity:

+

initWithCapacity:

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

-

intersectSet:

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

intersectSet:

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

-

minusSet:

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

minusSet:

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

-

removeAllObjects

+

removeAllObjects

- (void) removeAllObjects;

-

removeObject:

+

removeObject:

- (void) removeObject: (id)anObject;

-

setSet:

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

setSet:

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

-

unionSet:

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

unionSet:

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

diff --git a/Documentation/gsdoc/NSMutableString.html b/Documentation/gsdoc/NSMutableString.html index 7e3d71383..756b07981 100644 --- a/Documentation/gsdoc/NSMutableString.html +++ b/Documentation/gsdoc/NSMutableString.html @@ -16,12 +16,16 @@

NSMutableString

NSMutableString

Declared in: Foundation/NSString.h

-

Inherits from: NSString

+

Inherits from: NSString

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

stringWithCapacity:

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

Class Methods

+

stringWithCapacity:

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

-

appendFormat:

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

Instances Methods

+

appendFormat:

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

-

appendString:

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

appendString:

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

-

deleteCharactersInRange:

+

deleteCharactersInRange:

- (void) deleteCharactersInRange: (NSRange)aRange;

-

initWithCapacity:

+

initWithCapacity:

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

-

insertString:

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

insertString:

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

-

replaceCharactersInRange:withString:

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

replaceCharactersInRange:withString:

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

-

replaceString:withString:

-- (void) replaceString: (NSString*)aString withString: (NSString*)replacement;
+

replaceString:withString:

+- (void) replaceString: (NSString*)aString withString: (NSString*)replacement;
Standards: GNUstep NotMacOS-X NotOpenStep
Replaces any (and all) occurrances of aString in the @@ -80,8 +85,8 @@ Standards: GNUstep NotMacOS-X NotOpenStep
the receiver.
-

setString:

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

setString:

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

diff --git a/Documentation/gsdoc/NSNotification.html b/Documentation/gsdoc/NSNotification.html index 292ef92e0..da95f7b21 100644 --- a/Documentation/gsdoc/NSNotification.html +++ b/Documentation/gsdoc/NSNotification.html @@ -16,12 +16,16 @@

NSNotification

NSNotification

Declared in: Foundation/NSNotification.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

notificationWithName:object:

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

Class Methods

+

notificationWithName:object:

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

-

notificationWithName:object:userInfo:

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

notificationWithName:object:userInfo:

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

-

name

-- (NSString*) name;
+

Instances Methods

+

name

+- (NSString*) name;

-

object

+

object

- (id) object;

-

userInfo

-- (NSDictionary*) userInfo;
+

userInfo

+- (NSDictionary*) userInfo;

diff --git a/Documentation/gsdoc/NSNotificationCenter.html b/Documentation/gsdoc/NSNotificationCenter.html index b20db4707..94978acd5 100644 --- a/Documentation/gsdoc/NSNotificationCenter.html +++ b/Documentation/gsdoc/NSNotificationCenter.html @@ -16,12 +16,16 @@

NSNotificationCenter

NSNotificationCenter

Declared in: Foundation/NSNotification.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

defaultCenter

-+ (NSNotificationCenter*) defaultCenter;
+

Class Methods

+

defaultCenter

++ (NSNotificationCenter*) defaultCenter;

-

addObserver:selector:name:

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

Instances Methods

+

addObserver:selector:name:

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

-

postNotification:

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

postNotification:

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

-

postNotificationName:

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

postNotificationName:

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

-

postNotificationName:object:userInfo:

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

postNotificationName:object:userInfo:

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

-

removeObserver:

+

removeObserver:

- (void) removeObserver: (id)anObserver;

-

removeObserver:name:object:

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

removeObserver:name:object:

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

diff --git a/Documentation/gsdoc/NSNotificationQueue.html b/Documentation/gsdoc/NSNotificationQueue.html index 46013972e..d832fb544 100644 --- a/Documentation/gsdoc/NSNotificationQueue.html +++ b/Documentation/gsdoc/NSNotificationQueue.html @@ -16,12 +16,16 @@

NSNotificationQueue

NSNotificationQueue

Declared in: Foundation/NSNotificationQueue.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

defaultQueue

-+ (NSNotificationQueue*) defaultQueue;
+

Class Methods

+

defaultQueue

++ (NSNotificationQueue*) defaultQueue;

-

dequeueNotificationsMatching:

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

Instances Methods

+

dequeueNotificationsMatching:

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

-

enqueueNotification:

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

enqueueNotification:

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

-

enqueueNotification:postingStyle:coalesceMask:

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

enqueueNotification:postingStyle:coalesceMask:

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

-

initWithNotificationCenter:

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

initWithNotificationCenter:

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

diff --git a/Documentation/gsdoc/NSNumber.html b/Documentation/gsdoc/NSNumber.html index ba897e63a..5553771ac 100644 --- a/Documentation/gsdoc/NSNumber.html +++ b/Documentation/gsdoc/NSNumber.html @@ -16,12 +16,16 @@

NSNumber

NSNumber

Declared in: Foundation/NSValue.h

-

Inherits from: NSValue

+

Inherits from: NSValue

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

numberWithBool:

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

Class Methods

+

numberWithBool:

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

-

numberWithChar:

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

numberWithChar:

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

-

numberWithDouble:

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

numberWithDouble:

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

-

numberWithFloat:

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

numberWithFloat:

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

-

numberWithInt:

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

numberWithInt:

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

-

numberWithLong:

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

numberWithLong:

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

-

numberWithLongLong:

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

numberWithLongLong:

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

-

numberWithShort:

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

numberWithShort:

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

-

numberWithUnsignedChar:

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

numberWithUnsignedChar:

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

-

numberWithUnsignedInt:

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

numberWithUnsignedInt:

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

-

numberWithUnsignedLong:

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

numberWithUnsignedLong:

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

-

numberWithUnsignedLongLong:

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

numberWithUnsignedLongLong:

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

-

numberWithUnsignedShort:

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

numberWithUnsignedShort:

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

-

boolValue

+

Instances Methods

+

boolValue

- (BOOL) boolValue;

-

charValue

+

charValue

- (char) charValue;

-

compare:

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

compare:

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

-

decimalValue

+

decimalValue

- (NSDecimal) decimalValue;

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

doubleValue

+

doubleValue

- (double) doubleValue;

-

floatValue

+

floatValue

- (float) floatValue;

-

initWithBool:

+

initWithBool:

- (id) initWithBool: (BOOL)value;

-

initWithChar:

+

initWithChar:

- (id) initWithChar: (char)value;

-

initWithDouble:

+

initWithDouble:

- (id) initWithDouble: (double)value;

-

initWithFloat:

+

initWithFloat:

- (id) initWithFloat: (float)value;

-

initWithInt:

+

initWithInt:

- (id) initWithInt: (int)value;

-

initWithLong:

+

initWithLong:

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

-

initWithLongLong:

+

initWithLongLong:

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

-

initWithShort:

+

initWithShort:

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

-

initWithUnsignedChar:

+

initWithUnsignedChar:

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

-

initWithUnsignedInt:

+

initWithUnsignedInt:

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

-

initWithUnsignedLong:

+

initWithUnsignedLong:

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

-

initWithUnsignedLongLong:

+

initWithUnsignedLongLong:

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

-

initWithUnsignedShort:

+

initWithUnsignedShort:

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

-

intValue

+

intValue

- (int) intValue;

-

isEqualToNumber:

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

isEqualToNumber:

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

-

longLongValue

+

longLongValue

- (long long int) longLongValue;

-

longValue

+

longValue

- (long int) longValue;

-

shortValue

+

shortValue

- (short int) shortValue;

-

stringValue

-- (NSString*) stringValue;
+

stringValue

+- (NSString*) stringValue;

-

unsignedCharValue

+

unsignedCharValue

- (unsigned char) unsignedCharValue;

-

unsignedIntValue

+

unsignedIntValue

- (unsigned int) unsignedIntValue;

-

unsignedLongLongValue

+

unsignedLongLongValue

- (unsigned long long int) unsignedLongLongValue;

-

unsignedLongValue

+

unsignedLongValue

- (unsigned long int) unsignedLongValue;

-

unsignedShortValue

+

unsignedShortValue

- (unsigned short int) unsignedShortValue;
diff --git a/Documentation/gsdoc/NSNumberFormatter.html b/Documentation/gsdoc/NSNumberFormatter.html index 3cb655747..eab051ba9 100644 --- a/Documentation/gsdoc/NSNumberFormatter.html +++ b/Documentation/gsdoc/NSNumberFormatter.html @@ -16,12 +16,16 @@

NSNumberFormatter

NSNumberFormatter

Declared in: Foundation/NSNumberFormatter.h

-

Inherits from: NSFormatter

+

Inherits from: NSFormatter

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

allowsFloats

+

Instances Methods

+

allowsFloats

- (BOOL) allowsFloats;

-

attributedStringForNil

-- (NSAttributedString*) attributedStringForNil;
+

attributedStringForNil

+- (NSAttributedString*) attributedStringForNil;

-

attributedStringForNotANumber

-- (NSAttributedString*) attributedStringForNotANumber;
+

attributedStringForNotANumber

+- (NSAttributedString*) attributedStringForNotANumber;

-

attributedStringForZero

-- (NSAttributedString*) attributedStringForZero;
+

attributedStringForZero

+- (NSAttributedString*) attributedStringForZero;

-

decimalSeparator

-- (NSString*) decimalSeparator;
+

decimalSeparator

+- (NSString*) decimalSeparator;

-

format

-- (NSString*) format;
+

format

+- (NSString*) format;

-

hasThousandSeparators

+

hasThousandSeparators

- (BOOL) hasThousandSeparators;

-

localizesFormat

+

localizesFormat

- (BOOL) localizesFormat;

-

maximum

-- (NSDecimalNumber*) maximum;
+

maximum

+- (NSDecimalNumber*) maximum;

-

minimum

-- (NSDecimalNumber*) minimum;
+

minimum

+- (NSDecimalNumber*) minimum;

-

negativeFormat

-- (NSString*) negativeFormat;
+

negativeFormat

+- (NSString*) negativeFormat;

-

positiveFormat

-- (NSString*) positiveFormat;
+

positiveFormat

+- (NSString*) positiveFormat;

-

roundingBehavior

-- (NSDecimalNumberHandler*) roundingBehavior;
+

roundingBehavior

+- (NSDecimalNumberHandler*) roundingBehavior;

-

setAllowsFloats:

+

setAllowsFloats:

- (void) setAllowsFloats: (BOOL)flag;

-

setAttributedStringForNil:

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

setAttributedStringForNil:

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

-

setAttributedStringForNotANumber:

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

setAttributedStringForNotANumber:

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

-

setAttributedStringForZero:

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

setAttributedStringForZero:

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

-

setDecimalSeparator:

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

setDecimalSeparator:

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

-

setFormat:

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

setFormat:

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

-

setHasThousandSeparators:

+

setHasThousandSeparators:

- (void) setHasThousandSeparators: (BOOL)flag;

-

setLocalizesFormat:

+

setLocalizesFormat:

- (void) setLocalizesFormat: (BOOL)flag;

-

setMaximum:

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

setMaximum:

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

-

setMinimum:

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

setMinimum:

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

-

setNegativeFormat:

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

setNegativeFormat:

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

-

setPositiveFormat:

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

setPositiveFormat:

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

-

setRoundingBehavior:

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

setRoundingBehavior:

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

-

setTextAttributesForNegativeValues:

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

setTextAttributesForNegativeValues:

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

-

setTextAttributesForPositiveValues:

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

setTextAttributesForPositiveValues:

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

-

setThousandSeparator:

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

setThousandSeparator:

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

-

textAttributesForNegativeValues

-- (NSDictionary*) textAttributesForNegativeValues;
+

textAttributesForNegativeValues

+- (NSDictionary*) textAttributesForNegativeValues;

-

textAttributesForPositiveValues

-- (NSDictionary*) textAttributesForPositiveValues;
+

textAttributesForPositiveValues

+- (NSDictionary*) textAttributesForPositiveValues;

-

thousandSeparator

-- (NSString*) thousandSeparator;
+

thousandSeparator

+- (NSString*) thousandSeparator;

diff --git a/Documentation/gsdoc/NSObject.html b/Documentation/gsdoc/NSObject.html index 48e40ed89..2e15e2020 100644 --- a/Documentation/gsdoc/NSObject.html +++ b/Documentation/gsdoc/NSObject.html @@ -21,6 +21,10 @@
+

Instance Variables

+ +

Methods

-
-

alloc

+

Class Methods

+

alloc

+ (id) alloc;

-

allocWithZone:

+

allocWithZone:

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

-

cancelPreviousPerformRequestsWithTarget:selector:

+

cancelPreviousPerformRequestsWithTarget:selector:

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

-

class

+

class

+ (Class) class;

-

conformsToProtocol:

+

conformsToProtocol:

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

-

copyWithZone:

+

copyWithZone:

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

-

description

-+ (NSString*) description;
+

description

++ (NSString*) description;
The description factory method describes the class of the receiver. In the default GNUstep implementation, this simply returns the name of the class as an NSString object.
-

descriptionWithLocale:

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

descriptionWithLocale:

++ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale;
Standards: GNUstep
The default (NSOBject) implementation of this method simply calls @@ -116,8 +120,8 @@ Standards: GNUstep
information.
-

descriptionWithLocale:indent:

-+ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level;
+

descriptionWithLocale:indent:

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

descriptionWithLocale:indent:to:

-+ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output;
+

descriptionWithLocale:indent:to:

++ (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output;
Standards: GNUstep
The default (NSObject) implementation of this method simply calls @@ -134,98 +138,99 @@ Standards: GNUstep
the value returned by that method to the output object.
-

initialize

+

initialize

+ (void) initialize;

-

instanceMethodForSelector:

+

instanceMethodForSelector:

+ (IMP) instanceMethodForSelector: (SEL)aSelector;

-

instanceMethodSignatureForSelector:

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

instanceMethodSignatureForSelector:

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

-

instancesRespondToSelector:

+

instancesRespondToSelector:

+ (BOOL) instancesRespondToSelector: (SEL)aSelector;

-

load

+

load

+ (void) load;

-

mutableCopyWithZone:

+

mutableCopyWithZone:

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

-

new

+

new

+ (id) new;

-

poseAsClass:

+

poseAsClass:

+ (void) poseAsClass: (Class)aClass;

-

setVersion:

+

setVersion:

+ (void) setVersion: (int)aVersion;

-

superclass

+

superclass

+ (Class) superclass;

-

version

+

version

+ (int) version;

-

awakeAfterUsingCoder:

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

Instances Methods

+

awakeAfterUsingCoder:

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

-

classForArchiver

+

classForArchiver

- (Class) classForArchiver;

-

classForCoder

+

classForCoder

- (Class) classForCoder;

-

classForPortCoder

+

classForPortCoder

- (Class) classForPortCoder;

-

connection:handleRequest:

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

connection:handleRequest:

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

-

copy

+

copy

- (id) copy;

-

dealloc

+

dealloc

- (void) dealloc;

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

@@ -244,8 +249,8 @@ Standards: GNUstep


-

descriptionWithLocale:

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

descriptionWithLocale:

+- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale;
Standards: GNUstep
The default (NSOBject) implementation of this method simply calls @@ -253,8 +258,8 @@ Standards: GNUstep
information.
-

descriptionWithLocale:indent:

-- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level;
+

descriptionWithLocale:indent:

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

descriptionWithLocale:indent:to:

-- (NSString*) descriptionWithLocale: (NSDictionary*)aLocale indent: (unsigned int)level to: (id<GNUDescriptionDestination>)output;
+

descriptionWithLocale:indent:to:

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

-

doesNotRecognizeSelector:

+

doesNotRecognizeSelector:

- (void) doesNotRecognizeSelector: (SEL)aSelector;

-

forwardInvocation:

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

forwardInvocation:

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

-

hash

+

hash

- (unsigned int) hash;

-

init

+

init

- (id) init;

-

isEqual:

+

isEqual:

- (BOOL) isEqual: (id)anObject;

-

methodForSelector:

+

methodForSelector:

- (IMP) methodForSelector: (SEL)aSelector;

-

methodSignatureForSelector:

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

methodSignatureForSelector:

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

-

mutableCopy

+

mutableCopy

- (id) mutableCopy;

-

performSelector:withObject:

+

performSelector:withObject:

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

-

performSelector:withObject:afterDelay:inModes:

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

performSelector:withObject:afterDelay:inModes:

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

-

replacementObjectForArchiver:

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

replacementObjectForArchiver:

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

-

replacementObjectForCoder:

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

replacementObjectForCoder:

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

-

replacementObjectForPortCoder:

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

replacementObjectForPortCoder:

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

diff --git a/Documentation/gsdoc/NSPort.html b/Documentation/gsdoc/NSPort.html index 2d402853b..87f7971b4 100644 --- a/Documentation/gsdoc/NSPort.html +++ b/Documentation/gsdoc/NSPort.html @@ -16,12 +16,16 @@

NSPort

NSPort

Declared in: Foundation/NSPort.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

port

-+ (NSPort*) port;
+

Class Methods

+

port

++ (NSPort*) port;

-

portWithMachPort:

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

portWithMachPort:

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

-

addConnection:toRunLoop:forMode:

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

Instances Methods

+

addConnection:toRunLoop:forMode:

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

-

delegate

+

delegate

- (id) delegate;

-

initWithMachPort:

+

initWithMachPort:

- (id) initWithMachPort: (int)machPort;

-

invalidate

+

invalidate

- (void) invalidate;

-

isValid

+

isValid

- (BOOL) isValid;

-

machPort

+

machPort

- (int) machPort;

-

removeConnection:fromRunLoop:

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

removeConnection:fromRunLoop:

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

-

reservedSpaceLength

+

reservedSpaceLength

- (unsigned int) reservedSpaceLength;

-

setDelegate:

+

setDelegate:

- (void) setDelegate: (id)anObject;

-

handleMachMessage:

+

handleMachMessage:

- (void) handleMachMessage: (void*)machMessage;

-

handlePortMessage:

-- (void) handlePortMessage: (NSPortMessage*)portMessage;
+

handlePortMessage:

+- (void) handlePortMessage: (NSPortMessage*)portMessage;

-

limitDateForMode:

-- (NSDate*) limitDateForMode: (NSString*)mode;
+

limitDateForMode:

+- (NSDate*) limitDateForMode: (NSString*)mode;

diff --git a/Documentation/gsdoc/NSPortCoder.html b/Documentation/gsdoc/NSPortCoder.html index b8108aa79..fde06c51f 100644 --- a/Documentation/gsdoc/NSPortCoder.html +++ b/Documentation/gsdoc/NSPortCoder.html @@ -16,12 +16,16 @@

NSPortCoder

NSPortCoder

Declared in: Foundation/NSPortCoder.h

-

Inherits from: NSCoder

+

Inherits from: NSCoder

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

portCoderWithReceivePort:sendPort:components:

-+ (id) portCoderWithReceivePort: (NSPort*)receivePort sendPort: (NSPort*)sendPort components: (NSArray)components;
+

Class Methods

+

portCoderWithReceivePort:sendPort:components:

++ (id) portCoderWithReceivePort: (NSPort*)receivePort sendPort: (NSPort*)sendPort components: (NSArray)components;

-

connection

-- (NSConnection*) connection;
+

Instances Methods

+

connection

+- (NSConnection*) connection;

-

decodePortObject

-- (NSPort*) decodePortObject;
+

decodePortObject

+- (NSPort*) decodePortObject;

-

dispatch

+

dispatch

- (void) dispatch;

-

encodePortObject:

-- (void) encodePortObject: (NSPort*)aPort;
+

encodePortObject:

+- (void) encodePortObject: (NSPort*)aPort;

-

isBycopy

+

isBycopy

- (BOOL) isBycopy;

-

isByref

+

isByref

- (BOOL) isByref;
diff --git a/Documentation/gsdoc/NSPortMessage.html b/Documentation/gsdoc/NSPortMessage.html index ad24c95d7..c3df4b06f 100644 --- a/Documentation/gsdoc/NSPortMessage.html +++ b/Documentation/gsdoc/NSPortMessage.html @@ -16,12 +16,16 @@

NSPortMessage

NSPortMessage

Declared in: Foundation/NSPortMessage.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

components

-- (NSArray*) components;
+

Instances Methods

+

components

+- (NSArray*) components;

-

initWithMachMessage:

+

initWithMachMessage:

- (id) initWithMachMessage: (void*)buffer;

-

initWithSendPort:receivePort:

-- (id) initWithSendPort: (NSPort*)sendPort receivePort: (NSPort*)receivePort;
+

initWithSendPort:receivePort:

+- (id) initWithSendPort: (NSPort*)sendPort receivePort: (NSPort*)receivePort;

-

msgid

+

msgid

- (unsigned int) msgid;

-

receivePort

-- (NSPort*) receivePort;
+

receivePort

+- (NSPort*) receivePort;

-

sendBeforeDate:

-- (BOOL) sendBeforeDate: (NSDate*)aDate;
+

sendBeforeDate:

+- (BOOL) sendBeforeDate: (NSDate*)aDate;

-

sendPort

-- (NSPort*) sendPort;
+

sendPort

+- (NSPort*) sendPort;

-

setMsgid:

+

setMsgid:

- (void) setMsgid: (unsigned int)msgid;
diff --git a/Documentation/gsdoc/NSPortNameServer.html b/Documentation/gsdoc/NSPortNameServer.html index 865994739..b42953739 100644 --- a/Documentation/gsdoc/NSPortNameServer.html +++ b/Documentation/gsdoc/NSPortNameServer.html @@ -16,12 +16,16 @@

NSPortNameServer

NSPortNameServer

Declared in: Foundation/NSPortNameServer.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

defaultPortNameServer

+

Class Methods

+

defaultPortNameServer

+ (id) defaultPortNameServer;

-

portForName:

-- (NSPort*) portForName: (NSString*)portName;
+

Instances Methods

+

portForName:

+- (NSPort*) portForName: (NSString*)portName;

-

portForName:

-- (NSPort*) portForName: (NSString*)portName;
+

portForName:

+- (NSPort*) portForName: (NSString*)portName;

-

registerPort:forName:

-- (BOOL) registerPort: (NSPort*)aPort forName: (NSString*)portName;
+

registerPort:forName:

+- (BOOL) registerPort: (NSPort*)aPort forName: (NSString*)portName;

-

removePortForName:

-- (void) removePortForName: (NSString*)portName;
+

removePortForName:

+- (void) removePortForName: (NSString*)portName;

diff --git a/Documentation/gsdoc/NSProcessInfo.html b/Documentation/gsdoc/NSProcessInfo.html index cc15cc94d..8f260d744 100644 --- a/Documentation/gsdoc/NSProcessInfo.html +++ b/Documentation/gsdoc/NSProcessInfo.html @@ -16,12 +16,16 @@

NSProcessInfo

NSProcessInfo

Declared in: Foundation/NSProcessinfo.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

processInfo

-+ (NSProcessInfo*) processInfo;
+

Class Methods

+

processInfo

++ (NSProcessInfo*) processInfo;

-

arguments

-- (NSArray*) arguments;
+

Instances Methods

+

arguments

+- (NSArray*) arguments;

-

environment

-- (NSDictionary*) environment;
+

environment

+- (NSDictionary*) environment;

-

globallyUniqueString

-- (NSString*) globallyUniqueString;
+

globallyUniqueString

+- (NSString*) globallyUniqueString;

-

hostName

-- (NSString*) hostName;
+

hostName

+- (NSString*) hostName;

-

operatingSystem

+

operatingSystem

- (unsigned int) operatingSystem;

-

operatingSystemName

-- (NSString*) operatingSystemName;
+

operatingSystemName

+- (NSString*) operatingSystemName;

-

processName

-- (NSString*) processName;
+

processName

+- (NSString*) processName;

-

setProcessName:

-- (void) setProcessName: (NSString*)newName;
+

setProcessName:

+- (void) setProcessName: (NSString*)newName;

diff --git a/Documentation/gsdoc/NSProtocolChecker.html b/Documentation/gsdoc/NSProtocolChecker.html index 96bd238c7..9fab15c92 100644 --- a/Documentation/gsdoc/NSProtocolChecker.html +++ b/Documentation/gsdoc/NSProtocolChecker.html @@ -16,10 +16,14 @@

NSProtocolChecker

NSProtocolChecker

Declared in: Foundation/NSProtocolChecker.h

-

Inherits from: NSObject

+

Inherits from: NSObject


+

Instance Variables

+ +

Methods

-
-

protocolCheckerWithTarget:

-+ (id) protocolCheckerWithTarget: (NSObject*)anObject;
+

Class Methods

+

protocolCheckerWithTarget:

++ (id) protocolCheckerWithTarget: (NSObject*)anObject;

-

forwardInvocation:

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

Instances Methods

+

forwardInvocation:

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

-

initWithTarget:

-- (id) initWithTarget: (NSObject*)anObject;
+

initWithTarget:

+- (id) initWithTarget: (NSObject*)anObject;

-

methodDescriptionForSelector:

+

methodDescriptionForSelector:

- (structobjc_method_description*) methodDescriptionForSelector: (SEL)aSelector;

-

protocol

+

protocol

- (Protocol*) protocol;

-

target

-- (NSObject*) target;
+

target

+- (NSObject*) target;

diff --git a/Documentation/gsdoc/NSProxy.html b/Documentation/gsdoc/NSProxy.html index 30c26a19a..fbc8d2175 100644 --- a/Documentation/gsdoc/NSProxy.html +++ b/Documentation/gsdoc/NSProxy.html @@ -21,6 +21,10 @@
+

Instance Variables

+ +

Methods

-
-

alloc

+

Class Methods

+

alloc

+ (id) alloc;

-

allocWithZone:

+

allocWithZone:

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

-

class

+

class

+ (Class) class;

-

load

+

load

+ (void) load;

-

respondsToSelector:

+

respondsToSelector:

+ (BOOL) respondsToSelector: (SEL)aSelector;

-

class

+

Instances Methods

+

class

- (Class) class;

-

conformsToProtocol:

+

conformsToProtocol:

- (BOOL) conformsToProtocol: (Protocol)aProtocol;

-

dealloc

+

dealloc

- (void) dealloc;

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

-

forwardInvocation:

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

forwardInvocation:

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

-

isKindOfClass:

+

isKindOfClass:

- (BOOL) isKindOfClass: (Class)aClass;

-

isMemberOfClass:

+

isMemberOfClass:

- (BOOL) isMemberOfClass: (Class)aClass;

-

isProxy

+

isProxy

- (BOOL) isProxy;

-

methodSignatureForSelector:

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

methodSignatureForSelector:

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

-

respondsToSelector:

+

respondsToSelector:

- (BOOL) respondsToSelector: (SEL)aSelector;
diff --git a/Documentation/gsdoc/NSRecursiveLock.html b/Documentation/gsdoc/NSRecursiveLock.html index 307b8ab4d..3a8fad993 100644 --- a/Documentation/gsdoc/NSRecursiveLock.html +++ b/Documentation/gsdoc/NSRecursiveLock.html @@ -16,23 +16,27 @@

NSRecursiveLock

NSRecursiveLock

Declared in: Foundation/NSLock.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSLocking


+

Instance Variables

+ +

Methods

-
-

lockBeforeDate:

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

Instances Methods

+

lockBeforeDate:

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

-

tryLock

+

tryLock

- (BOOL) tryLock;
diff --git a/Documentation/gsdoc/NSRunLoop.html b/Documentation/gsdoc/NSRunLoop.html index 1dd98eed4..c3a28880f 100644 --- a/Documentation/gsdoc/NSRunLoop.html +++ b/Documentation/gsdoc/NSRunLoop.html @@ -16,12 +16,16 @@

NSRunLoop

NSRunLoop

Declared in: Foundation/NSRunLoop.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

currentRunLoop

-+ (NSRunLoop*) currentRunLoop;
+

Class Methods

+

currentRunLoop

++ (NSRunLoop*) currentRunLoop;

-

acceptInputForMode:beforeDate:

-- (void) acceptInputForMode: (NSString*)mode beforeDate: (NSDate*)limitDate;
+

Instances Methods

+

acceptInputForMode:beforeDate:

+- (void) acceptInputForMode: (NSString*)mode beforeDate: (NSDate*)limitDate;

-

addPort:forMode:

-- (void) addPort: (NSPort*)aPort forMode: (NSString*)mode;
+

addPort:forMode:

+- (void) addPort: (NSPort*)aPort forMode: (NSString*)mode;

-

addTimer:forMode:

-- (void) addTimer: (NSTimer*)aTimer forMode: (NSString*)mode;
+

addTimer:forMode:

+- (void) addTimer: (NSTimer*)aTimer forMode: (NSString*)mode;

-

cancelPerformSelector:target:argument:

+

cancelPerformSelector:target:argument:

- (void) cancelPerformSelector: (SEL)aSelector target: (id)target argument: (id)anArgument;

-

configureAsServer

+

configureAsServer

- (void) configureAsServer;

-

currentMode

-- (NSString*) currentMode;
+

currentMode

+- (NSString*) currentMode;

-

limitDateForMode:

-- (NSDate*) limitDateForMode: (NSString*)mode;
+

limitDateForMode:

+- (NSDate*) limitDateForMode: (NSString*)mode;

-

performSelector:target:argument:order:modes:

-- (void) performSelector: (SEL)aSelector target: (id)target argument: (id)anArgument order: (unsigned int)order modes: (NSArray*)modes;
+

performSelector:target:argument:order:modes:

+- (void) performSelector: (SEL)aSelector target: (id)target argument: (id)anArgument order: (unsigned int)order modes: (NSArray*)modes;

-

removePort:forMode:

-- (void) removePort: (NSPort*)aPort forMode: (NSString*)mode;
+

removePort:forMode:

+- (void) removePort: (NSPort*)aPort forMode: (NSString*)mode;

-

run

+

run

- (void) run;

-

runMode:beforeDate:

-- (BOOL) runMode: (NSString*)mode beforeDate: (NSDate*)limitDate;
+

runMode:beforeDate:

+- (BOOL) runMode: (NSString*)mode beforeDate: (NSDate*)limitDate;

-

runUntilDate:

-- (void) runUntilDate: (NSDate*)limitDate;
+

runUntilDate:

+- (void) runUntilDate: (NSDate*)limitDate;

diff --git a/Documentation/gsdoc/NSScanner.html b/Documentation/gsdoc/NSScanner.html index 216580537..b95408f0e 100644 --- a/Documentation/gsdoc/NSScanner.html +++ b/Documentation/gsdoc/NSScanner.html @@ -16,7 +16,7 @@

The NSScanner class documentation

NSScanner

Declared in: Foundation/NSScanner.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCopying


@@ -38,6 +38,10 @@

+

Instance Variables

+ +

Methods

-
-

localizedScannerWithString:

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

Class Methods

+

localizedScannerWithString:

++ (id) localizedScannerWithString: (NSString*)aString;
Returns an NSScanner instance set up to scan aString (using initWithString:) @@ -74,15 +78,16 @@ (using setLocale:).
-

scannerWithString:

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

scannerWithString:

++ (id) scannerWithString: (NSString*)aString;
Returns an NSScanner instance set up to scan aString (using initWithString:) and with no locale set.
-

caseSensitive

+

Instances Methods

+

caseSensitive

- (BOOL) caseSensitive;
If the scanner is set to be case-sensitive in its scanning of @@ -92,8 +97,8 @@ The default is for a scanner to not be case sensitive.
-

charactersToBeSkipped

-- (NSCharacterSet*) charactersToBeSkipped;
+

charactersToBeSkipped

+- (NSCharacterSet*) charactersToBeSkipped;
Returns a set of characters containing those characters that the scanner ignores when starting any scan operation. Once a character @@ -104,9 +109,9 @@ The default for this is the whitespaceAndNewlineCharacterSet.
-

initWithString:

+

initWithString:

This is the designated initialiser
-- (id) initWithString: (NSString*)aString;
+- (id) initWithString: (NSString*)aString;
Initialises the scanner to scan aString. The GNUstep implementation may make an internal copy of the original @@ -117,7 +122,7 @@ Returns the scanner object.
-

isAtEnd

+

isAtEnd

- (BOOL) isAtEnd;
Returns YES if there are no characters left to be scanned in the @@ -125,8 +130,8 @@ characters to be skipped). Returns NO otherwise.
-

locale

-- (NSDictionary*) locale;
+

locale

+- (NSDictionary*) locale;
Returns the locale set for the scanner, or nil if no locale has been set. A scanner uses it's locale to alter the way it handles @@ -134,8 +139,8 @@ numbers.
-

scanCharactersFromSet:intoString:

-- (BOOL) scanCharactersFromSet: (NSCharacterSet*)set intoString: (NSString**)stringValue;
+

scanCharactersFromSet:intoString:

+- (BOOL) scanCharactersFromSet: (NSCharacterSet*)set intoString: (NSString**)stringValue;
After initial skipping (if any), this method scans any characters from set, terminating when a character not in the set @@ -145,14 +150,14 @@ stored in a string returned in this value.
-

scanDecimal:

+

scanDecimal:

- (BOOL) scanDecimal: (NSDecimal*)decimalValue;
Standards: MacOS-X NotOpenStep
Not implemented.
-

scanDouble:

+

scanDouble:

- (BOOL) scanDouble: (double*)doubleValue;
After initial skipping (if any), this method scans a double value, @@ -166,7 +171,7 @@ Standards: MacOS-X NotOpenStep
Scans past any excess digits
-

scanFloat:

+

scanFloat:

- (BOOL) scanFloat: (float*)floatValue;
After initial skipping (if any), this method scans a float value, @@ -180,7 +185,7 @@ Standards: MacOS-X NotOpenStep
Scans past any excess digits
-

scanHexInt:

+

scanHexInt:

- (BOOL) scanHexInt: (unsigned int*)intValue;
After initial skipping (if any), this method scans a hexadecimal @@ -194,7 +199,7 @@ Standards: MacOS-X NotOpenStep
Scans past any excess digits
-

scanInt:

+

scanInt:

- (BOOL) scanInt: (int*)intValue;
After initial skipping (if any), this method scans a integer value, @@ -207,7 +212,7 @@ Standards: MacOS-X NotOpenStep
Scans past any excess digits
-

scanLocation

+

scanLocation

- (unsigned int) scanLocation;
Returns the current position that the scanner has reached in @@ -215,7 +220,7 @@ Standards: MacOS-X NotOpenStep
operation will begin.
-

scanLongLong:

+

scanLongLong:

- (BOOL) scanLongLong: (longlong*)longLongValue;
After initial skipping (if any), this method scans a long @@ -230,7 +235,7 @@ Standards: MacOS-X NotOpenStep
Scans past any excess digits
-

scanRadixUnsignedInt:

+

scanRadixUnsignedInt:

- (BOOL) scanRadixUnsignedInt: (unsigned int*)intValue;
Standards: GNUstep NotOpenStep NotMacOS-X
@@ -247,8 +252,8 @@ Standards: GNUstep NotOpenStep NotMacOS-X
Scans past any excess digits
-

scanString:intoString:

-- (BOOL) scanString: (NSString*)aString intoString: (NSString**)stringValue;
+

scanString:intoString:

+- (BOOL) scanString: (NSString*)aString intoString: (NSString**)stringValue;
After initial skipping (if any), this method scans for aString and places the string ound in stringValue @@ -257,8 +262,8 @@ Standards: GNUstep NotOpenStep NotMacOS-X
Returns YES if anything is scanned, NO otherwise.
-

scanUpToCharactersFromSet:intoString:

-- (BOOL) scanUpToCharactersFromSet: (NSCharacterSet*)set intoString: (NSString**)stringValue;
+

scanUpToCharactersFromSet:intoString:

+- (BOOL) scanUpToCharactersFromSet: (NSCharacterSet*)set intoString: (NSString**)stringValue;
After initial skipping (if any), this method scans characters until it finds one in set. The scanned characters are placed in @@ -267,8 +272,8 @@ Standards: GNUstep NotOpenStep NotMacOS-X
Returns YES if anything is scanned, NO otherwise.
-

scanUpToString:intoString:

-- (BOOL) scanUpToString: (NSString*)aString intoString: (NSString**)stringValue;
+

scanUpToString:intoString:

+- (BOOL) scanUpToString: (NSString*)aString intoString: (NSString**)stringValue;
After initial skipping (if any), this method scans characters until it finds aString. The scanned characters are placed in @@ -279,7 +284,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X
Returns YES if anything is scanned, NO otherwise.
-

setCaseSensitive:

+

setCaseSensitive:

- (void) setCaseSensitive: (BOOL)flag;
Sets the case sensitivity of the scanner. @@ -290,8 +295,8 @@ Standards: GNUstep NotOpenStep NotMacOS-X
The default is for a scanner to not be case sensitive.
-

setCharactersToBeSkipped:

-- (void) setCharactersToBeSkipped: (NSCharacterSet*)skipSet;
+

setCharactersToBeSkipped:

+- (void) setCharactersToBeSkipped: (NSCharacterSet*)skipSet;
Sets the set of characters that the scanner will skip over at the start of each scanning operation to be skipSet. @@ -302,14 +307,14 @@ Standards: GNUstep NotOpenStep NotMacOS-X
The default for this is the whitespaceAndNewlineCharacterSet.
-

setLocale:

-- (void) setLocale: (NSDictionary*)aLocale;
+

setLocale:

+- (void) setLocale: (NSDictionary*)aLocale;
This method sets the locale used by the scanner to aLocale. The locale may be set to nil.
-

setScanLocation:

+

setScanLocation:

- (void) setScanLocation: (unsigned int)index;
This method sets the location in the scanned string at which the @@ -318,8 +323,8 @@ Standards: GNUstep NotOpenStep NotMacOS-X
scanned string.
-

string

-- (NSString*) string;
+

string

+- (NSString*) string;
Returns the string used by the scanner. diff --git a/Documentation/gsdoc/NSSerializer.html b/Documentation/gsdoc/NSSerializer.html index 45ea9f347..343565b8b 100644 --- a/Documentation/gsdoc/NSSerializer.html +++ b/Documentation/gsdoc/NSSerializer.html @@ -16,23 +16,27 @@

NSSerializer

NSSerializer

Declared in: Foundation/NSSerialization.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+ +

Methods

-
-

serializePropertyList:

+

Class Methods

+

serializePropertyList:

+ (NSData*) serializePropertyList: (id)aPropertyList;

-

serializePropertyList:

+

serializePropertyList:

+ (void) serializePropertyList: (id)aPropertyList;
diff --git a/Documentation/gsdoc/NSSet.html b/Documentation/gsdoc/NSSet.html index 0ea0081ac..31514e59b 100644 --- a/Documentation/gsdoc/NSSet.html +++ b/Documentation/gsdoc/NSSet.html @@ -16,12 +16,16 @@

NSSet

NSSet

Declared in: Foundation/NSSet.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+ +

Methods

-
-

allocWithZone:

+

Class Methods

+

allocWithZone:

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

-

set

+

set

+ (id) set;

-

setWithArray:

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

setWithArray:

++ (id) setWithArray: (NSArray*)anArray;

-

setWithObject:

+

setWithObject:

+ (id) setWithObject: (id)anObject;

-

setWithObjects:

+

setWithObjects:

+ (id) setWithObjects: (id)anObject, ...;

-

setWithObjects:count:

+

setWithObjects:count:

+ (id) setWithObjects: (id*)objects count: (unsigned int)count;

-

setWithArray:

-+ (id) setWithArray: (NSSet*)aSet;
+

setWithArray:

++ (id) setWithArray: (NSSet*)aSet;

-

allObjects

-- (NSArray*) allObjects;
+

Instances Methods

+

allObjects

+- (NSArray*) allObjects;

-

anyObject

+

anyObject

- (id) anyObject;

-

containsObject:

+

containsObject:

- (BOOL) containsObject: (id)anObject;

-

count

+

count

- (unsigned int) count;

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

-

descriptionWithLocale:

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

descriptionWithLocale:

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

-

initWithArray:

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

initWithArray:

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

-

initWithObjects:

+

initWithObjects:

- (id) initWithObjects: (id)anObject, ...;

-

initWithObjects:count:

+

initWithObjects:count:

- (id) initWithObjects: (id*)objects count: (unsigned int)count;

-

initWithSet:

-- (id) initWithSet: (NSSet*)otherSet;
+

initWithSet:

+- (id) initWithSet: (NSSet*)otherSet;

-

initWithSet:copyItems:

-- (id) initWithSet: (NSSet*)otherSet copyItems: (BOOL)flag;
+

initWithSet:copyItems:

+- (id) initWithSet: (NSSet*)otherSet copyItems: (BOOL)flag;

-

intersectsSet:

-- (BOOL) intersectsSet: (NSSet*)otherSet;
+

intersectsSet:

+- (BOOL) intersectsSet: (NSSet*)otherSet;

-

isEqualToSet:

-- (BOOL) isEqualToSet: (NSSet*)otherSet;
+

isEqualToSet:

+- (BOOL) isEqualToSet: (NSSet*)otherSet;

-

isSubsetOfSet:

-- (BOOL) isSubsetOfSet: (NSSet*)otherSet;
+

isSubsetOfSet:

+- (BOOL) isSubsetOfSet: (NSSet*)otherSet;

-

makeObjectsPerform:

+

makeObjectsPerform:

- (void) makeObjectsPerform: (SEL)aSelector;

-

makeObjectsPerformSelector:

+

makeObjectsPerformSelector:

- (void) makeObjectsPerformSelector: (SEL)aSelector;

-

makeObjectsPerformSelector:withObject:

+

makeObjectsPerformSelector:withObject:

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

-

makeObjectsPerform:withObject:

+

makeObjectsPerform:withObject:

- (void) makeObjectsPerform: (SEL)aSelector withObject: (id)anObject;

-

member:

+

member:

- (id) member: (id)anObject;

-

objectEnumerator

-- (NSEnumerator*) objectEnumerator;
+

objectEnumerator

+- (NSEnumerator*) objectEnumerator;

diff --git a/Documentation/gsdoc/NSString.html b/Documentation/gsdoc/NSString.html index 7311d75a0..4fce2d943 100644 --- a/Documentation/gsdoc/NSString.html +++ b/Documentation/gsdoc/NSString.html @@ -18,7 +18,7 @@

NSString

NSString

Declared in: Foundation/NSString.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


@@ -34,6 +34,10 @@ A constant NSString can be created using the following syntax: @"..." +

Instance Variables

+
    +
+

Methods

-
-

availableStringEncodings

+

Class Methods

+

availableStringEncodings

+ (const NSStringEncoding*) availableStringEncodings;

@@ -134,7 +138,7 @@ Returns an array of all available string encodings, terminated by a null value.<


-

defaultCStringEncoding

+

defaultCStringEncoding

+ (NSStringEncoding) defaultCStringEncoding;

@@ -142,365 +146,366 @@ Returns the encoding used for any method accepting a C string.


-

localizedNameOfStringEncoding:

-+ (NSString*) localizedNameOfStringEncoding: (NSStringEncoding)encoding;
+

localizedNameOfStringEncoding:

++ (NSString*) localizedNameOfStringEncoding: (NSStringEncoding)encoding;

Returns the localized name of the encoding specified by encoding.


-

localizedStringWithFormat:

-+ (NSString*) localizedStringWithFormat: (NSString*)format,;
+

localizedStringWithFormat:

++ (NSString*) localizedStringWithFormat: (NSString*)format,;

-

pathWithComponents:

-+ (NSString*) pathWithComponents: (NSArray*)components;
+

pathWithComponents:

++ (NSString*) pathWithComponents: (NSArray*)components;

-

string

+

string

+ (id) string;

-

stringWithCharacters:length:

+

stringWithCharacters:length:

+ (id) stringWithCharacters: (const unichar*)chars length: (unsigned int)length;

-

stringWithContentsOfFile:

-+ (id) stringWithContentsOfFile: (NSString*)path;
+

stringWithContentsOfFile:

++ (id) stringWithContentsOfFile: (NSString*)path;

-

stringWithCString:

+

stringWithCString:

+ (id) stringWithCString: (const char*)cString;

-

stringWithCString:

+

stringWithCString:

+ (id) stringWithCString: (const char*)cString;

-

stringWithFormat:

-+ (id) stringWithFormat: (NSString*)format,;
+

stringWithFormat:

++ (id) stringWithFormat: (NSString*)format,;

-

stringWithString:

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

stringWithString:

++ (id) stringWithString: (NSString*)aString;

-

canBeConvertedToEncoding:

-- (BOOL) canBeConvertedToEncoding: (NSStringEncoding)encoding;
- - -
-

capitalizedString

-- (NSString*) capitalizedString;
- - -
-

caseInsensitiveCompare:

-- (NSComparisonResult) caseInsensitiveCompare: (NSString*)aString;
- - -
-

characterAtIndex:

-- (unichar) characterAtIndex: (unsigned int)index;
- - -
-

commonPrefixWithString:

-- (NSString*) commonPrefixWithString: (NSString*)aString;
- - -
-

compare:

-- (NSComparisonResult) compare: (NSString*)aString;
- - -
-

compare:

-- (NSComparisonResult) compare: (NSString*)aString;
- - -
-

compare:options:range:

-- (NSComparisonResult) compare: (NSString*)aString options: (unsigned int)mask range: (NSRange)aRange;
- - -
-

completePathIntoString:caseSensitive:matchesIntoArray:

-- (unsigned int) completePathIntoString: (NSString**)outputName caseSensitive: (BOOL)flag matchesIntoArray: (NSArray**)outputArray;
- - -
-

componentsSeparatedByString:

-- (NSArray*) componentsSeparatedByString: (NSString*)separator;
- - -
-

cString

-- (const char*) cString;
- - -
-

cStringLength

-- (unsigned int) cStringLength;
- - -
-

dataUsingEncoding:

-- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding;
- - -
-

dataUsingEncoding:allowLossyConversion:

-- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding allowLossyConversion: (BOOL)flag;
- - -
-

description

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

doubleValue

-- (double) doubleValue;
- - -
-

fastestEncoding

-- (NSStringEncoding) fastestEncoding;
- - -
-

fileSystemRepresentation

-- (const char*) fileSystemRepresentation;
- - -
-

floatValue

-- (float) floatValue;
- - -
-

getCharacters:

-- (void) getCharacters: (unichar*)buffer;
- - -
-

getCharacters:

-- (void) getCharacters: (unichar*)buffer;
- - -
-

getCString:

-- (void) getCString: (char*)buffer;
- - -
-

getCString:maxLength:

-- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength;
- - -
-

getCString:maxLength:range:remainingRange:

-- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength range: (NSRange)aRange remainingRange: (NSRange*)leftoverRange;
- - -
-

getFileSystemRepresentation:maxLength:

-- (BOOL) getFileSystemRepresentation: (char*)buffer maxLength: (unsigned int)maxLength;
- - -
-

getLineStart:end:contentsEnd:

+

getLineStart:end:contentsEnd:

+ (void) getLineStart: (unsigned int*)startIndex end: (unsigned int*)lineEndIndex contentsEnd: (unsigned int*)contentsEndIndex;

-

hash

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

hasPrefix:

-- (BOOL) hasPrefix: (NSString*)aString;
- - -
-

hasSuffix:

-- (BOOL) hasSuffix: (NSString*)aString;
- - -
-

init

-- (id) init;
- - -
-

initWithCharacters:

-- (id) initWithCharacters: (const unichar*)characters;
- - -
-

initWithCharactersNoCopy:length:freeWhenDone:

-- (id) initWithCharactersNoCopy: (unichar*)characters length: (unsigned int)length freeWhenDone: (BOOL)flag;
- - -
-

initWithContentsOfFile:

-- (id) initWithContentsOfFile: (NSString*)path;
- - -
-

initWithCString:

-- (id) initWithCString: (const char*)cString;
- - -
-

initWithCString:

-- (id) initWithCString: (const char*)cString;
- - -
-

initWithCStringNoCopy:length:freeWhenDone:

-- (id) initWithCStringNoCopy: (char*)cString length: (unsigned int)length freeWhenDone: (BOOL)flag;
- - -
-

initWithData:encoding:

-- (id) initWithData: (NSData*)data encoding: (NSStringEncoding)encoding;
- - -
-

initWithFormat:

-- (id) initWithFormat: (NSString*)format,;
- - -
-

initWithFormat:arguments:

-- (id) initWithFormat: (NSString*)format arguments: (va_list)argList;
- - -
-

initWithFormat:

-- (id) initWithFormat: (NSString*)format;
- - -
-

initWithFormat:locale:arguments:

-- (id) initWithFormat: (NSString*)format locale: (NSDictionary*)dictionary arguments: (va_list)argList;
- - -
-

initWithString:

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

intValue

-- (int) intValue;
- - -
-

isAbsolutePath

-- (BOOL) isAbsolutePath;
- - -
-

isEqualToString:

-- (BOOL) isEqualToString: (NSString*)aString;
- - -
-

lastPathComponent

-- (NSString*) lastPathComponent;
- - -
-

length

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

lineRangeForRange:

+

lineRangeForRange:

+ (NSRange) lineRangeForRange: (NSRange)aRange;

-

lossyCString

+

Instances Methods

+

canBeConvertedToEncoding:

+- (BOOL) canBeConvertedToEncoding: (NSStringEncoding)encoding;
+ + +
+

capitalizedString

+- (NSString*) capitalizedString;
+ + +
+

caseInsensitiveCompare:

+- (NSComparisonResult) caseInsensitiveCompare: (NSString*)aString;
+ + +
+

characterAtIndex:

+- (unichar) characterAtIndex: (unsigned int)index;
+ + +
+

commonPrefixWithString:

+- (NSString*) commonPrefixWithString: (NSString*)aString;
+ + +
+

compare:

+- (NSComparisonResult) compare: (NSString*)aString;
+ + +
+

compare:

+- (NSComparisonResult) compare: (NSString*)aString;
+ + +
+

compare:options:range:

+- (NSComparisonResult) compare: (NSString*)aString options: (unsigned int)mask range: (NSRange)aRange;
+ + +
+

completePathIntoString:caseSensitive:matchesIntoArray:

+- (unsigned int) completePathIntoString: (NSString**)outputName caseSensitive: (BOOL)flag matchesIntoArray: (NSArray**)outputArray;
+ + +
+

componentsSeparatedByString:

+- (NSArray*) componentsSeparatedByString: (NSString*)separator;
+ + +
+

cString

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

cStringLength

+- (unsigned int) cStringLength;
+ + +
+

dataUsingEncoding:

+- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding;
+ + +
+

dataUsingEncoding:allowLossyConversion:

+- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding allowLossyConversion: (BOOL)flag;
+ + +
+

description

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

doubleValue

+- (double) doubleValue;
+ + +
+

fastestEncoding

+- (NSStringEncoding) fastestEncoding;
+ + +
+

fileSystemRepresentation

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

floatValue

+- (float) floatValue;
+ + +
+

getCharacters:

+- (void) getCharacters: (unichar*)buffer;
+ + +
+

getCharacters:

+- (void) getCharacters: (unichar*)buffer;
+ + +
+

getCString:

+- (void) getCString: (char*)buffer;
+ + +
+

getCString:maxLength:

+- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength;
+ + +
+

getCString:maxLength:range:remainingRange:

+- (void) getCString: (char*)buffer maxLength: (unsigned int)maxLength range: (NSRange)aRange remainingRange: (NSRange*)leftoverRange;
+ + +
+

getFileSystemRepresentation:maxLength:

+- (BOOL) getFileSystemRepresentation: (char*)buffer maxLength: (unsigned int)maxLength;
+ + +
+

hash

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

hasPrefix:

+- (BOOL) hasPrefix: (NSString*)aString;
+ + +
+

hasSuffix:

+- (BOOL) hasSuffix: (NSString*)aString;
+ + +
+

init

+- (id) init;
+ + +
+

initWithCharacters:

+- (id) initWithCharacters: (const unichar*)characters;
+ + +
+

initWithCharactersNoCopy:length:freeWhenDone:

+- (id) initWithCharactersNoCopy: (unichar*)characters length: (unsigned int)length freeWhenDone: (BOOL)flag;
+ + +
+

initWithContentsOfFile:

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

initWithCString:

+- (id) initWithCString: (const char*)cString;
+ + +
+

initWithCString:

+- (id) initWithCString: (const char*)cString;
+ + +
+

initWithCStringNoCopy:length:freeWhenDone:

+- (id) initWithCStringNoCopy: (char*)cString length: (unsigned int)length freeWhenDone: (BOOL)flag;
+ + +
+

initWithData:encoding:

+- (id) initWithData: (NSData*)data encoding: (NSStringEncoding)encoding;
+ + +
+

initWithFormat:

+- (id) initWithFormat: (NSString*)format,;
+ + +
+

initWithFormat:arguments:

+- (id) initWithFormat: (NSString*)format arguments: (va_list)argList;
+ + +
+

initWithFormat:

+- (id) initWithFormat: (NSString*)format;
+ + +
+

initWithFormat:locale:arguments:

+- (id) initWithFormat: (NSString*)format locale: (NSDictionary*)dictionary arguments: (va_list)argList;
+ + +
+

initWithString:

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

intValue

+- (int) intValue;
+ + +
+

isAbsolutePath

+- (BOOL) isAbsolutePath;
+ + +
+

isEqualToString:

+- (BOOL) isEqualToString: (NSString*)aString;
+ + +
+

lastPathComponent

+- (NSString*) lastPathComponent;
+ + +
+

length

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

lossyCString

- (const char*) lossyCString;

-

lowercaseString

-- (NSString*) lowercaseString;
+

lowercaseString

+- (NSString*) lowercaseString;

-

pathComponents

-- (NSArray*) pathComponents;
+

pathComponents

+- (NSArray*) pathComponents;

-

pathExtension

-- (NSString*) pathExtension;
+

pathExtension

+- (NSString*) pathExtension;

-

propertyList

+

propertyList

- (id) propertyList;

-

propertyListFromStringsFileFormat

-- (NSDictionary*) propertyListFromStringsFileFormat;
+

propertyListFromStringsFileFormat

+- (NSDictionary*) propertyListFromStringsFileFormat;

-

rangeOfCharacterFromSet:

-- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet;
+

rangeOfCharacterFromSet:

+- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet;

-

rangeOfCharacterFromSet:options:

-- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask;
+

rangeOfCharacterFromSet:options:

+- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask;

-

rangeOfCharacterFromSet:options:range:

-- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask range: (NSRange)aRange;
+

rangeOfCharacterFromSet:options:range:

+- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet options: (unsigned int)mask range: (NSRange)aRange;

-

rangeOfComposedCharacterSequenceAtIndex:

+

rangeOfComposedCharacterSequenceAtIndex:

- (NSRange) rangeOfComposedCharacterSequenceAtIndex: (unsigned int)anIndex;

-

rangeOfString:

-- (NSRange) rangeOfString: (NSString*)aString;
+

rangeOfString:

+- (NSRange) rangeOfString: (NSString*)aString;
Invokes rangeOfString:options: with the options mask set to zero.
-

rangeOfString:options:

-- (NSRange) rangeOfString: (NSString*)aString options: (unsigned int)mask;
+

rangeOfString:options:

+- (NSRange) rangeOfString: (NSString*)aString options: (unsigned int)mask;
Invokes rangeOfString:options:range with the range set set to the range of the whole of the reciever.
-

rangeOfString:options:range:

-- (NSRange) rangeOfString: (NSString*)subString options: (unsigned int)mask range: (NSRange)aRange;
+

rangeOfString:options:range:

+- (NSRange) rangeOfString: (NSString*)subString options: (unsigned int)mask range: (NSRange)aRange;
Returns the range giving the location and length of the first occurrence of subString within aRange. @@ -524,53 +529,53 @@ Returns the localized name of the encoding specified by encoding.


-

smallestEncoding

+

smallestEncoding

- (NSStringEncoding) smallestEncoding;

-

stringByAbbreviatingWithTildeInPath

-- (NSString*) stringByAbbreviatingWithTildeInPath;
+

stringByAbbreviatingWithTildeInPath

+- (NSString*) stringByAbbreviatingWithTildeInPath;

-

stringByAppendingFormat:

-- (NSString*) stringByAppendingFormat: (NSString*)format,;
+

stringByAppendingFormat:

+- (NSString*) stringByAppendingFormat: (NSString*)format,;

-

stringByAppendingPathComponent:

-- (NSString*) stringByAppendingPathComponent: (NSString*)aString;
+

stringByAppendingPathComponent:

+- (NSString*) stringByAppendingPathComponent: (NSString*)aString;

-

stringByAppendingPathExtension:

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

stringByAppendingPathExtension:

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

-

stringByAppendingString:

-- (NSString*) stringByAppendingString: (NSString*)aString;
+

stringByAppendingString:

+- (NSString*) stringByAppendingString: (NSString*)aString;

-

stringByDeletingLastPathComponent

-- (NSString*) stringByDeletingLastPathComponent;
+

stringByDeletingLastPathComponent

+- (NSString*) stringByDeletingLastPathComponent;

-

stringByDeletingPathExtension

-- (NSString*) stringByDeletingPathExtension;
+

stringByDeletingPathExtension

+- (NSString*) stringByDeletingPathExtension;

-

stringByExpandingTildeInPath

-- (NSString*) stringByExpandingTildeInPath;
+

stringByExpandingTildeInPath

+- (NSString*) stringByExpandingTildeInPath;

-

stringByReplacingString:withString:

-- (NSString*) stringByReplacingString: (NSString*)aString withString: (NSString*)replacement;
+

stringByReplacingString:withString:

+- (NSString*) stringByReplacingString: (NSString*)aString withString: (NSString*)replacement;
Standards: GNUstep NotMacOS-X NotOpenStep
Returns a string in which any (and all) occurrances of @@ -580,33 +585,33 @@ Standards: GNUstep NotMacOS-X NotOpenStep
not considered to exist within the receiver.
-

stringsByAppendingPaths:

-- (NSArray*) stringsByAppendingPaths: (NSArray*)paths;
+

stringsByAppendingPaths:

+- (NSArray*) stringsByAppendingPaths: (NSArray*)paths;

-

substringFromIndex:

-- (NSString*) substringFromIndex: (unsigned int)anIndex;
+

substringFromIndex:

+- (NSString*) substringFromIndex: (unsigned int)anIndex;

-

substringToIndex:

-- (NSString*) substringToIndex: (unsigned int)anIndex;
+

substringToIndex:

+- (NSString*) substringToIndex: (unsigned int)anIndex;

-

substringWithRange:

-- (NSString*) substringWithRange: (NSRange)aRange;
+

substringWithRange:

+- (NSString*) substringWithRange: (NSRange)aRange;

-

uppercaseString

-- (NSString*) uppercaseString;
+

uppercaseString

+- (NSString*) uppercaseString;

-

writeToFile:atomically:

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

writeToFile:atomically:

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

diff --git a/Documentation/gsdoc/NSTask.html b/Documentation/gsdoc/NSTask.html index 43ee50631..194787195 100644 --- a/Documentation/gsdoc/NSTask.html +++ b/Documentation/gsdoc/NSTask.html @@ -16,12 +16,16 @@

NSTask

NSTask

Declared in: Foundation/NSTask.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

launchedTaskWithLaunchPath:arguments:

-+ (NSTask*) launchedTaskWithLaunchPath: (NSString*)path arguments: (NSArray*)arguments;
+

Class Methods

+

launchedTaskWithLaunchPath:arguments:

++ (NSTask*) launchedTaskWithLaunchPath: (NSString*)path arguments: (NSArray*)arguments;

-

arguments

-- (NSArray*) arguments;
+

Instances Methods

+

arguments

+- (NSArray*) arguments;

-

currentDirectoryPath

-- (NSString*) currentDirectoryPath;
+

currentDirectoryPath

+- (NSString*) currentDirectoryPath;

-

environment

-- (NSDictionary*) environment;
+

environment

+- (NSDictionary*) environment;

-

init

+

init

- (id) init;

-

interrupt

+

interrupt

- (void) interrupt;

-

isRunning

+

isRunning

- (BOOL) isRunning;

-

launch

+

launch

- (void) launch;

-

launchPath

-- (NSString*) launchPath;
+

launchPath

+- (NSString*) launchPath;

-

setArguments:

-- (void) setArguments: (NSArray*)arguments;
+

setArguments:

+- (void) setArguments: (NSArray*)arguments;

-

setCurrentDirectoryPath:

-- (void) setCurrentDirectoryPath: (NSString*)path;
+

setCurrentDirectoryPath:

+- (void) setCurrentDirectoryPath: (NSString*)path;

-

setEnvironment:

-- (void) setEnvironment: (NSDictionary*)environmentDictionary;
+

setEnvironment:

+- (void) setEnvironment: (NSDictionary*)environmentDictionary;

-

setLaunchPath:

-- (void) setLaunchPath: (NSString*)path;
+

setLaunchPath:

+- (void) setLaunchPath: (NSString*)path;

-

setStandardError:

+

setStandardError:

- (void) setStandardError: (id)file;

-

setStandardInput:

+

setStandardInput:

- (void) setStandardInput: (id)file;

-

setStandardOutput:

+

setStandardOutput:

- (void) setStandardOutput: (id)file;

-

standardError

+

standardError

- (id) standardError;

-

standardInput

+

standardInput

- (id) standardInput;

-

standardOutput

+

standardOutput

- (id) standardOutput;

-

terminate

+

terminate

- (void) terminate;

-

terminationStatus

+

terminationStatus

- (int) terminationStatus;

-

waitUntilExit

+

waitUntilExit

- (void) waitUntilExit;
diff --git a/Documentation/gsdoc/NSThread.html b/Documentation/gsdoc/NSThread.html index 1ee165e04..96f069734 100644 --- a/Documentation/gsdoc/NSThread.html +++ b/Documentation/gsdoc/NSThread.html @@ -16,12 +16,16 @@

NSThread

NSThread

Declared in: Foundation/NSThread.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

currentThread

-+ (NSThread*) currentThread;
+

Class Methods

+

currentThread

++ (NSThread*) currentThread;

-

detachNewThreadSelector:toTarget:(id)aTarget withObject:

+

detachNewThreadSelector:toTarget:(id)aTarget withObject:

+ (void) detachNewThreadSelector: (SEL)aSelector toTarget:(id)aTarget withObject: (id)anArgument;

-

exit

+

exit

+ (void) exit;

-

isMultiThreaded

+

isMultiThreaded

+ (BOOL) isMultiThreaded;

-

sleepUntilDate:

-+ (void) sleepUntilDate: (NSDate*)aDate;
+

sleepUntilDate:

++ (void) sleepUntilDate: (NSDate*)aDate;

-

threadDictionary

-- (NSMutableDictionary*) threadDictionary;
+

Instances Methods

+

threadDictionary

+- (NSMutableDictionary*) threadDictionary;

diff --git a/Documentation/gsdoc/NSTimeZone.html b/Documentation/gsdoc/NSTimeZone.html index 93dc75526..558df9b69 100644 --- a/Documentation/gsdoc/NSTimeZone.html +++ b/Documentation/gsdoc/NSTimeZone.html @@ -16,12 +16,16 @@

NSTimeZone

NSTimeZone

Declared in: Foundation/NSTimeZone.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+
    +
+

Methods

-
-

abbreviationDictionary

-+ (NSDictionary*) abbreviationDictionary;
+

Class Methods

+

abbreviationDictionary

++ (NSDictionary*) abbreviationDictionary;

-

defaultTimeZone

-+ (NSTimeZone*) defaultTimeZone;
+

defaultTimeZone

++ (NSTimeZone*) defaultTimeZone;

-

localTimeZone

-+ (NSTimeZone*) localTimeZone;
+

localTimeZone

++ (NSTimeZone*) localTimeZone;

-

knownTimeZoneNames

-+ (NSArray*) knownTimeZoneNames;
+

knownTimeZoneNames

++ (NSArray*) knownTimeZoneNames;

-

resetSystemTimeZone

+

resetSystemTimeZone

+ (void) resetSystemTimeZone;

-

setDefaultTimeZone:

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

setDefaultTimeZone:

++ (void) setDefaultTimeZone: (NSTimeZone*)aTimeZone;

-

systemTimeZone

-+ (NSTimeZone*) systemTimeZone;
+

systemTimeZone

++ (NSTimeZone*) systemTimeZone;

-

timeZoneForSecondsFromGMT:

-+ (NSTimeZone*) timeZoneForSecondsFromGMT: (int)seconds;
+

timeZoneForSecondsFromGMT:

++ (NSTimeZone*) timeZoneForSecondsFromGMT: (int)seconds;

-

timeZoneWithAbbreviation:

-+ (NSTimeZone*) timeZoneWithAbbreviation: (NSString*)abbreviation;
+

timeZoneWithAbbreviation:

++ (NSTimeZone*) timeZoneWithAbbreviation: (NSString*)abbreviation;

-

timeZoneWithName:

-+ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName;
+

timeZoneWithName:

++ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName;

-

timeZoneWithName:

-+ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName;
+

timeZoneWithName:

++ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName;

-

abbreviation

-- (NSString*) abbreviation;
+

Instances Methods

+

abbreviation

+- (NSString*) abbreviation;

-

abbreviationForDate:

-- (NSString*) abbreviationForDate: (NSDate*)aDate;
+

abbreviationForDate:

+- (NSString*) abbreviationForDate: (NSDate*)aDate;

-

data

+

data

- (NSData*) data;

-

description

-- (NSString*) description;
+

description

+- (NSString*) description;

-

initWithName:

-- (id) initWithName: (NSString*)aName;
+

initWithName:

+- (id) initWithName: (NSString*)aName;

-

initWithName:

-- (id) initWithName: (NSString*)aName;
+

initWithName:

+- (id) initWithName: (NSString*)aName;

-

isDaylightSavingTime

+

isDaylightSavingTime

- (BOOL) isDaylightSavingTime;

-

isDaylightSavingTimeForDate:

-- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate;
+

isDaylightSavingTimeForDate:

+- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate;

-

isEqualToTimeZone:

-- (BOOL) isEqualToTimeZone: (NSTimeZone*)aTimeZone;
+

isEqualToTimeZone:

+- (BOOL) isEqualToTimeZone: (NSTimeZone*)aTimeZone;

-

name

-- (NSString*) name;
+

name

+- (NSString*) name;

-

secondsFromGMT

+

secondsFromGMT

- (int) secondsFromGMT;

-

secondsFromGMTForDate:

-- (int) secondsFromGMTForDate: (NSDate*)aDate;
+

secondsFromGMTForDate:

+- (int) secondsFromGMTForDate: (NSDate*)aDate;

diff --git a/Documentation/gsdoc/NSTimer.html b/Documentation/gsdoc/NSTimer.html index a9d1b32e5..df9e24fc0 100644 --- a/Documentation/gsdoc/NSTimer.html +++ b/Documentation/gsdoc/NSTimer.html @@ -16,12 +16,16 @@

NSTimer

NSTimer

Declared in: Foundation/NSTimer.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

scheduledTimerWithTimeInterval:invocation:

-+ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation;
+

Class Methods

+

scheduledTimerWithTimeInterval:invocation:

++ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation;

-

scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:

-+ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats;
+

scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:

++ (NSTimer*) scheduledTimerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats;

-

timerWithTimeInterval:invocation:

-+ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation;
+

timerWithTimeInterval:invocation:

++ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds invocation: (NSInvocation*)invocation;

-

timerWithTimeInterval:target:selector:userInfo:repeats:

-+ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats;
+

timerWithTimeInterval:target:selector:userInfo:repeats:

++ (NSTimer*) timerWithTimeInterval: (NSTimeInterval)seconds target: (id)target selector: (SEL)aSelector userInfo: (id)userInfo repeats: (BOOL)repeats;

-

fire

+

Instances Methods

+

fire

- (void) fire;

-

fireDate

-- (NSDate*) fireDate;
+

fireDate

+- (NSDate*) fireDate;

-

invalidate

+

invalidate

- (void) invalidate;

-

isValid

+

isValid

- (BOOL) isValid;

-

timeInterval

+

timeInterval

- (NSTimeInterval) timeInterval;

-

userInfo

+

userInfo

- (id) userInfo;
diff --git a/Documentation/gsdoc/NSURL.html b/Documentation/gsdoc/NSURL.html index c3f0448f8..832c98fe8 100644 --- a/Documentation/gsdoc/NSURL.html +++ b/Documentation/gsdoc/NSURL.html @@ -16,12 +16,16 @@

NSURL

NSURL

Declared in: Foundation/NSURL.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+
    +
+

Methods

-
-

URLWithString:

-+ (id) URLWithString: (NSString*)URLString;
+

Class Methods

+

URLWithString:

++ (id) URLWithString: (NSString*)URLString;

-

URLWithString:relativeToURL:

-+ (id) URLWithString: (NSString*)URLString relativeToURL: (NSURL*)baseURL;
+

URLWithString:relativeToURL:

++ (id) URLWithString: (NSString*)URLString relativeToURL: (NSURL*)baseURL;

-

fileURLWithPath:

-+ (id) fileURLWithPath: (NSString*)path;
+

fileURLWithPath:

++ (id) fileURLWithPath: (NSString*)path;

-

loadResourceDataNotifyingClient:usingCache:

+

Instances Methods

+

loadResourceDataNotifyingClient:usingCache:

- (void) loadResourceDataNotifyingClient: (id)client usingCache: (BOOL)shouldUseCache;

-

parameterString

-- (NSString*) parameterString;
+

parameterString

+- (NSString*) parameterString;

-

password

-- (NSString*) password;
+

password

+- (NSString*) password;

-

path

-- (NSString*) path;
+

path

+- (NSString*) path;

-

port

-- (NSNumber*) port;
+

port

+- (NSNumber*) port;

-

propertyForKey:

-- (id) propertyForKey: (NSString*)propertyKey;
+

propertyForKey:

+- (id) propertyForKey: (NSString*)propertyKey;

-

query

-- (NSString*) query;
+

query

+- (NSString*) query;

-

relativePath

-- (NSString*) relativePath;
+

relativePath

+- (NSString*) relativePath;

-

relativeString

-- (NSString*) relativeString;
+

relativeString

+- (NSString*) relativeString;

-

resourceDataUsingCache:

+

resourceDataUsingCache:

- (NSData*) resourceDataUsingCache: (BOOL)shouldUseCache;

-

resourceSpecifier

-- (NSString*) resourceSpecifier;
+

resourceSpecifier

+- (NSString*) resourceSpecifier;

-

scheme

-- (NSString*) scheme;
+

scheme

+- (NSString*) scheme;

-

setProperty:

+

setProperty:

- (BOOL) setProperty: (id)property;

-

setResourceData:

+

setResourceData:

- (BOOL) setResourceData: (NSData*)data;

-

standardizedURL

-- (NSURL*) standardizedURL;
+

standardizedURL

+- (NSURL*) standardizedURL;

-

user

-- (NSString*) user;
+

user

+- (NSString*) user;

diff --git a/Documentation/gsdoc/NSURLHandle.html b/Documentation/gsdoc/NSURLHandle.html index 0a5e71203..738658177 100644 --- a/Documentation/gsdoc/NSURLHandle.html +++ b/Documentation/gsdoc/NSURLHandle.html @@ -16,10 +16,14 @@

NSURLHandle

NSURLHandle

Declared in: Foundation/NSURLHandle.h

-

Inherits from: NSObject

+

Inherits from: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

URLHandleClassForURL:

-+ (Class) URLHandleClassForURL: (NSURL*)anURL;
+

Class Methods

+

URLHandleClassForURL:

++ (Class) URLHandleClassForURL: (NSURL*)anURL;

-

cachedHandleForURL:

-+ (NSURLHandle*) cachedHandleForURL: (NSURL*)anURL;
+

cachedHandleForURL:

++ (NSURLHandle*) cachedHandleForURL: (NSURL*)anURL;

-

canInitWithURL:

-+ (BOOL) canInitWithURL: (NSURL*)anURL;
+

canInitWithURL:

++ (BOOL) canInitWithURL: (NSURL*)anURL;

-

registerURLHandleClass:

+

registerURLHandleClass:

+ (void) registerURLHandleClass: (Class)anURLHandleSubclass;

-

addClient:

+

Instances Methods

+

addClient:

- (void) addClient: (id<NSURLHandleClient>)client;

-

availableResourceData

+

availableResourceData

- (NSData*) availableResourceData;

-

backgroundLoadDidFailWithReason:

-- (void) backgroundLoadDidFailWithReason: (NSString*)reason;
+

backgroundLoadDidFailWithReason:

+- (void) backgroundLoadDidFailWithReason: (NSString*)reason;

-

beginLoadInBackground

+

beginLoadInBackground

- (void) beginLoadInBackground;

-

cancelLoadInBackground

+

cancelLoadInBackground

- (void) cancelLoadInBackground;

-

didLoadBytes:loadComplete:

+

didLoadBytes:loadComplete:

- (void) didLoadBytes: (NSData*)newBytes loadComplete: (BOOL)yorn;

-

endLoadInBackground

+

endLoadInBackground

- (void) endLoadInBackground;

-

failureReason

-- (NSString*) failureReason;
+

failureReason

+- (NSString*) failureReason;

-

flushCachedData

+

flushCachedData

- (void) flushCachedData;

-

loadInBackground

+

loadInBackground

- (void) loadInBackground;

-

loadInForeground

+

loadInForeground

- (NSData*) loadInForeground;

-

propertyForKey:

-- (id) propertyForKey: (NSString*)propertyKey;
+

propertyForKey:

+- (id) propertyForKey: (NSString*)propertyKey;

-

propertyForKeyIfAvailable:

-- (id) propertyForKeyIfAvailable: (NSString*)propertyKey;
+

propertyForKeyIfAvailable:

+- (id) propertyForKeyIfAvailable: (NSString*)propertyKey;

-

removeClient:

+

removeClient:

- (void) removeClient: (id<NSURLHandleClient>)client;

-

resourceData

+

resourceData

- (NSData*) resourceData;

-

status

+

status

- (NSURLHandleStatus) status;

-

writeData:

+

writeData:

- (BOOL) writeData: (NSData*)data;

-

writeProperty:

+

writeProperty:

- (BOOL) writeProperty: (id)propertyValue;
diff --git a/Documentation/gsdoc/NSUnarchiver.html b/Documentation/gsdoc/NSUnarchiver.html index 338b0069a..c0b53e6f0 100644 --- a/Documentation/gsdoc/NSUnarchiver.html +++ b/Documentation/gsdoc/NSUnarchiver.html @@ -16,12 +16,16 @@

NSUnarchiver

NSUnarchiver

Declared in: Foundation/NSArchiver.h

-

Inherits from: NSCoder

+

Inherits from: NSCoder

Conforms to: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

classNameDecodedForArchiveClassName:

-+ (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive;
+

Class Methods

+

classNameDecodedForArchiveClassName:

++ (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive;

-

decodeClassName:

-+ (void) decodeClassName: (NSString*)nameInArchive;
+

decodeClassName:

++ (void) decodeClassName: (NSString*)nameInArchive;

-

unarchiveObjectWithData:

+

unarchiveObjectWithData:

+ (id) unarchiveObjectWithData: (NSData*)data;

-

unarchiveObjectWithFile:

-+ (id) unarchiveObjectWithFile: (NSString*)path;
+

unarchiveObjectWithFile:

++ (id) unarchiveObjectWithFile: (NSString*)path;

-

classNameDecodedForArchiveClassName:

-- (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive;
+

Instances Methods

+

classNameDecodedForArchiveClassName:

+- (NSString*) classNameDecodedForArchiveClassName: (NSString*)nameInArchive;

-

decodeClassName:

-- (void) decodeClassName: (NSString*)nameInArchive;
+

decodeClassName:

+- (void) decodeClassName: (NSString*)nameInArchive;

-

initForReadingWithData:

+

initForReadingWithData:

- (id) initForReadingWithData: (NSData*)data;

-

isAtEnd

+

isAtEnd

- (BOOL) isAtEnd;

-

objectZone

+

objectZone

- (NSZone*) objectZone;

-

replaceObject:withObject:

+

replaceObject:withObject:

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

-

setObjectZone:

+

setObjectZone:

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

-

systemVersion

+

systemVersion

- (unsigned int) systemVersion;
diff --git a/Documentation/gsdoc/NSUndoManager.html b/Documentation/gsdoc/NSUndoManager.html index 0f35a6eb9..7ef493246 100644 --- a/Documentation/gsdoc/NSUndoManager.html +++ b/Documentation/gsdoc/NSUndoManager.html @@ -16,12 +16,16 @@

NSUndoManager

NSUndoManager

Declared in: Foundation/NSUndoManager.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

beginUndoGrouping

+

Instances Methods

+

beginUndoGrouping

- (void) beginUndoGrouping;

-

canRedo

+

canRedo

- (BOOL) canRedo;

-

canUndo

+

canUndo

- (BOOL) canUndo;

-

disableUndoRegistration

+

disableUndoRegistration

- (void) disableUndoRegistration;

-

enableUndoRegistration

+

enableUndoRegistration

- (void) enableUndoRegistration;

-

endUndoGrouping

+

endUndoGrouping

- (void) endUndoGrouping;

-

forwardInvocation:

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

forwardInvocation:

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

-

groupingLevel

+

groupingLevel

- (int) groupingLevel;

-

groupsByEvent

+

groupsByEvent

- (BOOL) groupsByEvent;

-

isRedoing

+

isRedoing

- (BOOL) isRedoing;

-

isUndoing

+

isUndoing

- (BOOL) isUndoing;

-

isUndoRegisgrationEnabled

+

isUndoRegisgrationEnabled

- (BOOL) isUndoRegisgrationEnabled;

-

levelsOfUndo

+

levelsOfUndo

- (unsigned int) levelsOfUndo;

-

prepareWithInvocationTarget:

+

prepareWithInvocationTarget:

- (id) prepareWithInvocationTarget: (id)target;

-

redo

+

redo

- (void) redo;

-

redoActionName

-- (NSString*) redoActionName;
+

redoActionName

+- (NSString*) redoActionName;

-

redoMenuItemTitle

-- (NSString*) redoMenuItemTitle;
+

redoMenuItemTitle

+- (NSString*) redoMenuItemTitle;

-

redoMenuTitleForUndoActionName:

-- (NSString*) redoMenuTitleForUndoActionName: (NSString*)actionName;
+

redoMenuTitleForUndoActionName:

+- (NSString*) redoMenuTitleForUndoActionName: (NSString*)actionName;

-

registerUndoWithTarget:selector:

+

registerUndoWithTarget:selector:

- (void) registerUndoWithTarget: (id)target selector: (SEL)aSelector;

-

removeAllActions

+

removeAllActions

- (void) removeAllActions;

-

removeAllActionsWithTarget:

+

removeAllActionsWithTarget:

- (void) removeAllActionsWithTarget: (id)target;

-

runLoopModes

-- (NSArray*) runLoopModes;
+

runLoopModes

+- (NSArray*) runLoopModes;

-

setActionName:

-- (void) setActionName: (NSString*)actionName;
+

setActionName:

+- (void) setActionName: (NSString*)actionName;

-

setGroupsByEvent:

+

setGroupsByEvent:

- (void) setGroupsByEvent: (BOOL)flag;

-

setLevelsOfUndo:

+

setLevelsOfUndo:

- (void) setLevelsOfUndo: (unsigned int)anInt;

-

setRunLoopModes:

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

setRunLoopModes:

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

-

undo

+

undo

- (void) undo;

-

undoActionName

-- (NSString*) undoActionName;
+

undoActionName

+- (NSString*) undoActionName;

-

undoMenuItemTitle

-- (NSString*) undoMenuItemTitle;
+

undoMenuItemTitle

+- (NSString*) undoMenuItemTitle;

-

undoMenuTitleForUndoActionName:

-- (NSString*) undoMenuTitleForUndoActionName: (NSString*)actionName;
+

undoMenuTitleForUndoActionName:

+- (NSString*) undoMenuTitleForUndoActionName: (NSString*)actionName;

-

undoNestedGroup

+

undoNestedGroup

- (void) undoNestedGroup;
diff --git a/Documentation/gsdoc/NSUserDefaults.html b/Documentation/gsdoc/NSUserDefaults.html index 6a6cfa5e5..860966070 100644 --- a/Documentation/gsdoc/NSUserDefaults.html +++ b/Documentation/gsdoc/NSUserDefaults.html @@ -16,12 +16,16 @@

NSUserDefaults

NSUserDefaults

Declared in: Foundation/NSUserDefaults.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSObject


+

Instance Variables

+
    +
+

Methods

-
-

standardUserDefaults

-+ (NSUserDefaults*) standardUserDefaults;
+

Class Methods

+

standardUserDefaults

++ (NSUserDefaults*) standardUserDefaults;

-

arrayForKey:

-- (NSArray*) arrayForKey: (NSString*)defaultName;
+

Instances Methods

+

arrayForKey:

+- (NSArray*) arrayForKey: (NSString*)defaultName;

-

boolForKey:

-- (BOOL) boolForKey: (NSString*)defaultName;
+

boolForKey:

+- (BOOL) boolForKey: (NSString*)defaultName;

-

dataForKey:

-- (NSData*) dataForKey: (NSString*)defaultName;
+

dataForKey:

+- (NSData*) dataForKey: (NSString*)defaultName;

-

dictionaryForKey:

-- (NSDictionary*) dictionaryForKey: (NSString*)defaultName;
+

dictionaryForKey:

+- (NSDictionary*) dictionaryForKey: (NSString*)defaultName;

-

dictionaryRepresentation

-- (NSDictionary*) dictionaryRepresentation;
+

dictionaryRepresentation

+- (NSDictionary*) dictionaryRepresentation;

-

floatForKey:

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

floatForKey:

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

-

init

+

init

- (id) init;

-

initWithUser:

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

initWithUser:

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

-

integerForKey:

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

integerForKey:

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

-

objectForKey:

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

objectForKey:

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

-

persistentDomainForName:

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

persistentDomainForName:

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

-

persistentDomainNames

-- (NSArray*) persistentDomainNames;
+

persistentDomainNames

+- (NSArray*) persistentDomainNames;

-

registerDefaults:

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

registerDefaults:

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

-

removeObjectForKey:

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

removeObjectForKey:

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

-

removePersistentDomainForName:

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

removePersistentDomainForName:

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

-

removeVolatileDomainForName:

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

removeVolatileDomainForName:

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

-

searchList

-- (NSArray*) searchList;
+

searchList

+- (NSArray*) searchList;

-

setBool:forKey:

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

setBool:forKey:

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

-

setFloat:forKey:

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

setFloat:forKey:

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

-

setInteger:forKey:

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

setInteger:forKey:

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

-

setObject:forKey:

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

setObject:forKey:

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

-

setPersistentDomain:forName:

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

setPersistentDomain:forName:

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

-

setSearchList:

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

setSearchList:

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

-

setVolatileDomain:forName:

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

setVolatileDomain:forName:

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

-

stringArrayForKey:

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

stringArrayForKey:

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

-

stringForKey:

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

stringForKey:

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

-

synchronize

+

synchronize

- (BOOL) synchronize;

-

volatileDomainForName:

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

volatileDomainForName:

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

-

volatileDomainNames

-- (NSArray*) volatileDomainNames;
+

volatileDomainNames

+- (NSArray*) volatileDomainNames;

diff --git a/Documentation/gsdoc/NSValue.html b/Documentation/gsdoc/NSValue.html index 815fbdf51..d86e6b81d 100644 --- a/Documentation/gsdoc/NSValue.html +++ b/Documentation/gsdoc/NSValue.html @@ -15,12 +15,16 @@

NSValue

NSValue

Declared in: Foundation/NSValue.h

-

Inherits from: NSObject

+

Inherits from: NSObject

Conforms to: NSCoding


+

Instance Variables

+
    +
+

Methods

-
-

value:withObjCType:

-+ (NSValue*) value: (const void*)value withObjCType: (const char*)type;
+

Class Methods

+

value:withObjCType:

++ (NSValue*) value: (const void*)value withObjCType: (const char*)type;

-

valueWithBytes:objCType:

-+ (NSValue*) valueWithBytes: (const void*)value objCType: (const char*)type;
+

valueWithBytes:objCType:

++ (NSValue*) valueWithBytes: (const void*)value objCType: (const char*)type;

-

valueWithNonretainedObject:

-+ (NSValue*) valueWithNonretainedObject: (id)anObject;
+

valueWithNonretainedObject:

++ (NSValue*) valueWithNonretainedObject: (id)anObject;

-

valueWithPoint:

-+ (NSValue*) valueWithPoint: (NSPoint)aPoint;
+

valueWithPoint:

++ (NSValue*) valueWithPoint: (NSPoint)aPoint;

-

valueWithPointer:

-+ (NSValue*) valueWithPointer: (const void*)aPointer;
+

valueWithPointer:

++ (NSValue*) valueWithPointer: (const void*)aPointer;

-

valueWithRect:

-+ (NSValue*) valueWithRect: (NSRect)rect;
+

valueWithRect:

++ (NSValue*) valueWithRect: (NSRect)rect;

-

valueWithSize:

-+ (NSValue*) valueWithSize: (NSSize)size;
+

valueWithSize:

++ (NSValue*) valueWithSize: (NSSize)size;

-

getValue:

+

Instances Methods

+

getValue:

- (void) getValue: (void*)buffer;

-

initWithBytes:objCType:

+

initWithBytes:objCType:

- (id) initWithBytes: (const void*)value objCType: (const char*)type;

-

+

- (id) ;

-

nonretainedObjectValue

+

nonretainedObjectValue

- (id) nonretainedObjectValue;

-

objCType

+

objCType

- (const char*) objCType;

-

pointValue

+

pointValue

- (NSPoint) pointValue;

-

pointerValue

+

pointerValue

- (void*) pointerValue;

-

rectValue

+

rectValue

- (NSRect) rectValue;

-

sizeValue

+

sizeValue

- (NSSize) sizeValue;
diff --git a/Headers/gnustep/base/GSXML.h b/Headers/gnustep/base/GSXML.h index 5696afe2d..b3e52464a 100644 --- a/Headers/gnustep/base/GSXML.h +++ b/Headers/gnustep/base/GSXML.h @@ -1,8 +1,31 @@ -/* Implementation for GSPropertyList +/* Interface for XML parsing classes + + Copyright (C) 2000 Free Software Foundation, Inc. + + Written by: Michael Pakhantsov on behalf of + Brainstorm computer solutions. - Written by: Michael Pakhantsov Date: Jule 2000 + + Integrated by Richard Frith-Macdonald + Date: September 2000 + + This file is part of the GNUstep Base Library. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ #ifndef __GSXML_H__ @@ -56,9 +79,9 @@ typedef xmlNsType GSXMLNamespaceType; - (GSXMLNode*) root; - (GSXMLNode*) setRoot: (GSXMLNode*)node; -- (GSXMLNode*) makeNode: (GSXMLNamespace*)ns - name: (NSString*)name - content: (NSString*)content; +- (GSXMLNode*) makeNodeWithNamespace: (GSXMLNamespace*)ns + name: (NSString*)name + content: (NSString*)content; - (NSString*) version; - (NSString*) encoding; @@ -75,9 +98,9 @@ typedef xmlNsType GSXMLNamespaceType; BOOL native; } -+ (GSXMLNamespace*) namespace: (GSXMLNode*)node - href: (NSString*)href - prefix: (NSString*)prefix; ++ (GSXMLNamespace*) namespaceWithNode: (GSXMLNode*)node + href: (NSString*)href + prefix: (NSString*)prefix; + (GSXMLNamespace*) namespaceFrom: (void*)data; - (id) initWithNode: (GSXMLNode*)node @@ -120,9 +143,9 @@ typedef xmlNsType GSXMLNamespaceType; - (NSMutableDictionary*) propertiesAsDictionary; - (GSXMLElementType) type; -- (GSXMLNode*) makeChild: (GSXMLNamespace*)ns - name: (NSString*)name - content: (NSString*)content; +- (GSXMLNode*) makeChildWithNamespace: (GSXMLNamespace*)ns + name: (NSString*)name + content: (NSString*)content; - (GSXMLNode*) makeComment: (NSString*)content; - (GSXMLNode*) makePI: (NSString*)name content: (NSString*)content; @@ -136,12 +159,12 @@ typedef xmlNsType GSXMLNamespaceType; @interface GSXMLAttribute : GSXMLNode { } -+ (GSXMLAttribute*) attributeFromNode: (GSXMLNode*)node ++ (GSXMLAttribute*) attributeWithNode: (GSXMLNode*)node name: (NSString*)name value: (NSString*)value; + (GSXMLAttribute*) attributeFrom: (void*)data; -- (id) initFromNode: (GSXMLNode*)node +- (id) initWithNode: (GSXMLNode*)node name: (NSString*)name value: (NSString*)value; - (id) initFrom: (void*)data; diff --git a/Source/GSXML.m b/Source/GSXML.m index 1bd6c7c0b..a86e0984c 100644 --- a/Source/GSXML.m +++ b/Source/GSXML.m @@ -1,7 +1,29 @@ /* Implementation for GSXMLDocument for GNUstep xmlparser - Written by: Michael Pakhantsov + Copyright (C) 2000 Free Software Foundation, Inc. + + Written by: Michael Pakhantsov on behalf of + Brainstorm computer solutions. Date: Jule 2000 + + Integration by Richard Frith-Macdonald + Date: September 2000 + + This file is part of the GNUstep Base Library. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ #include @@ -152,9 +174,9 @@ setupCache() } -- (GSXMLNode*) makeNode: (GSXMLNamespace*)ns - name: (NSString*)name - content: (NSString*)content; +- (GSXMLNode*) makeNodeWithNamespace: (GSXMLNamespace*)ns + name: (NSString*)name + content: (NSString*)content; { return [GSXMLNode nodeFrom: xmlNewDocNode(lib, [ns lib], [name cString], [content cString])]; @@ -176,9 +198,9 @@ setupCache() } /* This is the initializer of this class */ -+ (GSXMLNamespace*) namespace: (GSXMLNode*)node - href: (NSString*)href - prefix: (NSString*)prefix ++ (GSXMLNamespace*) namespaceWithNode: (GSXMLNode*)node + href: (NSString*)href + prefix: (NSString*)prefix { return AUTORELEASE([[self alloc] initWithNode: node href: href @@ -552,9 +574,9 @@ setupCache() } } -- (GSXMLNode*) makeChild: (GSXMLNamespace*)ns - name: (NSString*)name - content: (NSString*)content; +- (GSXMLNode*) makeChildWithNamespace: (GSXMLNamespace*)ns + name: (NSString*)name + content: (NSString*)content; { return [GSXMLNode nodeFrom: xmlNewChild(lib, [ns lib], [name cString], [content cString])]; @@ -621,14 +643,14 @@ setupCache() return lib; } -+ (GSXMLAttribute*) attributeFromNode: (GSXMLNode*)node ++ (GSXMLAttribute*) attributeWithNode: (GSXMLNode*)node name: (NSString*)name value: (NSString*)value; { - return AUTORELEASE([[self alloc] initFromNode: node name: name value: value]); + return AUTORELEASE([[self alloc] initWithNode: node name: name value: value]); } -- (id) initFromNode: (GSXMLNode*)node +- (id) initWithNode: (GSXMLNode*)node name: (NSString*)name value: (NSString*)value; {