#include <OOCocoa.h>
Definition at line 277 of file OOCocoa.h.
◆ description
- (NSString *) description |
|
|
|
|
implementation |
Definition at line 93 of file OOCocoa.m.
43{
44 NSString *components =
nil;
45
46 components = [self descriptionComponents];
47 if (components !=
nil)
48 {
49 return [NSString stringWithFormat:@"<%@ %p>{%@}", [self class], self, components];
50 }
51 else
52 {
53 return [NSString stringWithFormat:@"<%@ %p>", [self class], self];
54 }
55}
◆ descriptionComponents
- (NSString *) descriptionComponents |
|
|
|
◆ shortDescription
- (NSString *) shortDescription |
|
|
|
Definition at line 93 of file OOCocoa.m.
59{
60 NSString *components =
nil;
61
62 components = [self shortDescriptionComponents];
63 if (components !=
nil)
64 {
65 return [NSString stringWithFormat:@"<%@ %p>{%@}", [self class], self, components];
66 }
67 else
68 {
69 return [NSString stringWithFormat:@"<%@ %p>", [self class], self];
70 }
71}
◆ shortDescriptionComponents
- (NSString *) shortDescriptionComponents |
|
|
|
The documentation for this category was generated from the following files: