mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
description tidyups
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6297 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e1b32b96e9
commit
df92ce66a7
14 changed files with 526 additions and 190 deletions
|
@ -57,8 +57,47 @@
|
|||
<method type="NSString*" factory="yes">
|
||||
<sel>description</sel>
|
||||
<desc>
|
||||
The <code>description</code> 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.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="NSString*" factory="yes">
|
||||
<sel>descriptionWithLocale:</sel>
|
||||
<arg type="NSDictionary*">aLocale</arg>
|
||||
<desc>
|
||||
The default (NSOBject) implementation of this method simply calls
|
||||
the <code>description</code> method and discards the locale
|
||||
information.
|
||||
</desc>
|
||||
<standards><GNUstep/></standards>
|
||||
</method>
|
||||
<method type="NSString*" factory="yes">
|
||||
<sel>descriptionWithLocale:</sel>
|
||||
<arg type="NSDictionary*">aLocale</arg>
|
||||
<sel>indent:</sel>
|
||||
<arg type="unsigned int">level</arg>
|
||||
<desc>
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
the <code>descriptionWithLocale:</code> method and discards the
|
||||
level information.
|
||||
</desc>
|
||||
<standards><GNUstep/></standards>
|
||||
</method>
|
||||
<method type="NSString*" factory="yes">
|
||||
<sel>descriptionWithLocale:</sel>
|
||||
<arg type="NSDictionary*">aLocale</arg>
|
||||
<sel>indent:</sel>
|
||||
<arg type="unsigned int">level</arg>
|
||||
<sel>to:</sel>
|
||||
<arg type="id<GNUDescriptionDestination>">output</arg>
|
||||
<desc>
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
the <code>descriptionWithLocale:indent:</code> method and appends
|
||||
the value returned by that method to the output object.
|
||||
</desc>
|
||||
<standards><GNUstep/></standards>
|
||||
</method>
|
||||
<method type="void" factory="yes">
|
||||
<sel>initialize</sel>
|
||||
<desc>
|
||||
|
@ -162,8 +201,60 @@
|
|||
<method type="NSString*">
|
||||
<sel>description</sel>
|
||||
<desc>
|
||||
<p>
|
||||
The <code>description</code> method describes the reciever.
|
||||
In the default GNUstep implementation, this returns an NSString
|
||||
object giving the name of the class of the receiver and the
|
||||
hexadecimal representation of the recievers address enclosed
|
||||
in angle brackets.
|
||||
</p>
|
||||
<p>
|
||||
Generally, classes other than NSObject will override this method
|
||||
to provide a more informative description of their instances.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
<method type="NSString*">
|
||||
<sel>descriptionWithLocale:</sel>
|
||||
<arg type="NSDictionary*">aLocale</arg>
|
||||
<desc>
|
||||
The default (NSOBject) implementation of this method simply calls
|
||||
the <code>description</code> method and discards the locale
|
||||
information.
|
||||
</desc>
|
||||
<standards><GNUstep/></standards>
|
||||
</method>
|
||||
<method type="NSString*">
|
||||
<sel>descriptionWithLocale:</sel>
|
||||
<arg type="NSDictionary*">aLocale</arg>
|
||||
<sel>indent:</sel>
|
||||
<arg type="unsigned int">level</arg>
|
||||
<desc>
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
the <code>descriptionWithLocale:</code> method and discards the
|
||||
level information.
|
||||
</desc>
|
||||
<standards><GNUstep/></standards>
|
||||
</method>
|
||||
<method type="NSString*">
|
||||
<sel>descriptionWithLocale:</sel>
|
||||
<arg type="NSDictionary*">aLocale</arg>
|
||||
<sel>indent:</sel>
|
||||
<arg type="unsigned int">level</arg>
|
||||
<sel>to:</sel>
|
||||
<arg type="id<GNUDescriptionDestination>">output</arg>
|
||||
<desc>
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
the <code>descriptionWithLocale:indent:</code> method and appends
|
||||
the value returned by that method to the output object.
|
||||
<p>
|
||||
Property-list classes (NSString, NSArray, NSDictionary and
|
||||
NSData) will override this method in order to efficiently
|
||||
write descriptions of themselves into property lists.
|
||||
</p>
|
||||
</desc>
|
||||
<standards><GNUstep/></standards>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>doesNotRecognizeSelector:</sel>
|
||||
<arg type="SEL">aSelector</arg>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue