// // JSRunSideBarColumn.m // JSRun // // Created by Jonathan Saggau on 3/3/07. // Copyright 2007 Jonathan Saggau. All rights reserved. // #import "JSRunSideBarColumn.h" #import "JSRunSideBarCell.h" #import "JSCommonMacros.h" @implementation JSRunSideBarColumn - (id) init { self = [super init]; if (self != nil) { // } return self; } - (void) awakeFromNib { JSRunSideBarCell *dataCell = [[JSRunSideBarCell alloc] initTextCell:@"(empty)"]; NSImage *cellIcon = [NSImage imageNamed:@"sidebar-icon.tif"]; [dataCell setImage:cellIcon]; [self setDataCell: dataCell]; [dataCell release]; } @end