ftp.nice.ch/pub/next/tools/preferences/FontSearch.0.85.NI.bs.tar.gz#/FontSearch.0.85.NI.bs/Source/CEBrowserCell.m

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

/* CEBrowserCell.m				 
 *
 * This object controls the data of a beaker (molecules, cameras, groups etc.)
 * It is the main document of BeakerBoy and controls everything from loading to
 * setting up the browser which does most of the other work.
 *
 * For interface-info see the header file. The comments in this file mostly
 * cover only the real implementation details.
 *
 * Written by: 		Thomas Engel
 * Created:    		23.10.1993 (Copyleft)
 * Last modified: 	12.11.1994
 */

#define CURRENT_VERSION 1

#import "CEBrowserCell.h"

@implementation CEBrowserCell

+ initialize
{
	if ( self == [CEBrowserCell class] )
		[CEBrowserCell setVersion:CURRENT_VERSION];

	return self;
}

- setSource:theObject
{
	source = theObject;
	return self;
}

- source
{
	return source;
}

@end

/*
 * History: 13.01.95 Buh
 *			
 *
 * Bugs: - ...
 */

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