ftp.nice.ch/pub/next/connectivity/infosystems/WAIStation.1.9.6.N.b.tar.gz#/WAIS/next-ui/BrowserAssocTable.m

This is BrowserAssocTable.m in view mode; [Download] [Up]

// BrowserAssocTable.m
//
// Free software created 1 Feb 1992
// by Paul Burchard <burchard@math.utah.edu>.

#import "BrowserAssocTable.h"
#import "AssocTableCell.h"

@implementation BrowserAssocTable

- initFrame:(const NXRect *)frameRect
{
    return [super initFrame:frameRect cellClass:[AssocTableCell class]];
}

- setAssocStringValue:(const char *)aString at:(int)row
{
    return [[self cellAt:row] setAssocStringValue:aString];
}

- (const char *)assocStringValueAt:(int)row
{
    id cell;
    
    if(!(cell = [self cellAt:row])) return 0;
    return [cell assocStringValue];
}

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.