home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / ClassEditor.0.3 / Source / CEBrowserCell.m < prev    next >
Encoding:
Text File  |  1995-01-13  |  835 b   |  47 lines

  1. /* CEBrowserCell.m                 
  2.  *
  3.  * This object controls the data of a beaker (molecules, cameras, groups etc.)
  4.  * It is the main document of BeakerBoy and controls everything from loading to
  5.  * setting up the browser which does most of the other work.
  6.  *
  7.  * For interface-info see the header file. The comments in this file mostly
  8.  * cover only the real implementation details.
  9.  *
  10.  * Written by:         Thomas Engel
  11.  * Created:            23.10.1993 (Copyleft)
  12.  * Last modified:     12.11.1994
  13.  */
  14.  
  15. #define CURRENT_VERSION 1
  16.  
  17. #import "CEBrowserCell.h"
  18.  
  19. @implementation CEBrowserCell
  20.  
  21. + initialize
  22. {
  23.     if ( self == [CEBrowserCell class] )
  24.         [CEBrowserCell setVersion:CURRENT_VERSION];
  25.  
  26.     return self;
  27. }
  28.  
  29. - setSource:theObject
  30. {
  31.     source = theObject;
  32.     return self;
  33. }
  34.  
  35. - source
  36. {
  37.     return source;
  38. }
  39.  
  40. @end
  41.  
  42. /*
  43.  * History: 13.01.95 Buh
  44.  *            
  45.  *
  46.  * Bugs: - ...
  47.  */