Improved documentation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22025 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fabien Vallon 2005-11-17 10:56:58 +00:00
parent 5c44a57c0b
commit 03d0ff1ee0
2 changed files with 14 additions and 2 deletions

View file

@ -1,6 +1,7 @@
2005-11-17 fabien <fabien@sonappart.net> 2005-11-17 fabien <fabien@sonappart.net>
* Source/NSControl.m : Improved documentation * Source/NSControl.m : Improved documentation
* Source/NSCustomImageRep.m : Improved documentation
2005-11-16 fabien <fabien@sonappart.net> 2005-11-16 fabien <fabien@sonappart.net>

View file

@ -34,12 +34,18 @@
#include "AppKit/NSColor.h" #include "AppKit/NSColor.h"
#include "AppKit/DPSOperators.h" #include "AppKit/DPSOperators.h"
/** <p>TODO : Desciption</p>
*/
@implementation NSCustomImageRep @implementation NSCustomImageRep
/** Initializes a new NSCustomImageRep with .When a -draw message is recieved
it send aSelector message to the delegate anObject.
*/
- (id) initWithDrawSelector: (SEL)aSelector - (id) initWithDrawSelector: (SEL)aSelector
delegate: (id)anObject delegate: (id)anObject
{ {
[super init]; if ( ! ( self = [super init] ) )
return nil;
/* WARNING: Retaining the delegate may or may not create a cyclic graph */ /* WARNING: Retaining the delegate may or may not create a cyclic graph */
_delegate = RETAIN(anObject); _delegate = RETAIN(anObject);
@ -53,12 +59,17 @@
[super dealloc]; [super dealloc];
} }
// Identifying the Object /** <p>Returns the NSCustomImageRep's delegate</p>
<p>See Also: -initWithDrawSelector:delegate:</p>
*/
- (id) delegate - (id) delegate
{ {
return _delegate; return _delegate;
} }
/**<p>Returns the draw method selector sent to the delegate when
NSCustomImageRep recieved a -draw message</p>
*/
- (SEL) drawSelector - (SEL) drawSelector
{ {
return _selector; return _selector;