Browse CVS Repository
Contents of /undmail/guiproto/AddressGroup.m
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
Wed Jan 29 18:30:41 2003 UTC
(21 years, 1 month ago)
by footashida
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +3 -1 lines
*** empty log message ***
| 1 |
#import "AddressGroup.h" |
| 2 |
#import "AddressBookController.h" |
| 3 |
@implementation AddressGroup |
| 4 |
// ---------------------------------------------------------------------------------------- |
| 5 |
// NSTableDataSource |
| 6 |
// ---------------------------------------------------------------------------------------- |
| 7 |
-(void)dealloc{ |
| 8 |
[appController release]; |
| 9 |
} |
| 10 |
- (int)numberOfRowsInTableView:(NSTableView *)aTableView |
| 11 |
{ |
| 12 |
return [[appController group] count]; |
| 13 |
}/* numberOfRowsInTableView */ |
| 14 |
|
| 15 |
- (id)tableView:(NSTableView *)aTableView |
| 16 |
objectValueForTableColumn:(NSTableColumn *)aTableColumn |
| 17 |
row:(int)rowIndex |
| 18 |
{ |
| 19 |
return [[appController group] objectAtIndex:rowIndex]; |
| 20 |
}/* tableView */ |
| 21 |
|
| 22 |
@end |
|