Browse CVS Repository
Contents of /undmail/guiproto/DummyOutlineItem.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1.1.1 -
( show annotations)
( download)
( as text)
(vendor branch)
Mon Nov 11 15:40:37 2002 UTC
(21 years, 4 months ago)
by footashida
Branch: MAIN, ventor
CVS Tags: start, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/x-chdr
| 1 |
#import <Foundation/Foundation.h> |
| 2 |
|
| 3 |
|
| 4 |
@interface DummyOutlineItem : NSObject { |
| 5 |
NSString *itemName; |
| 6 |
NSMutableArray *childItems; |
| 7 |
} |
| 8 |
- (id)initWithName:(NSString *)name; |
| 9 |
- (id)itemName; |
| 10 |
- (int)numberOfChildren; // Returns -1 for leaf nodes |
| 11 |
- (void)addChild:(DummyOutlineItem *)item; |
| 12 |
- (DummyOutlineItem *)childAtIndex:(int)n; // Invalid to call on leaf nodes |
| 13 |
@end |
|