home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / DistributedObjects / remoteSpot / ClientRecord.m < prev    next >
Text File  |  1992-07-24  |  388b  |  39 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "ClientRecord.h"
  5.  
  6. @implementation ClientRecord
  7.  
  8. - init
  9. {
  10.     return [self initClient:nil connection:nil spot:nil];
  11. }
  12.  
  13. - initClient:remoteClient connection:c spot:aSpot
  14. {
  15.     client = remoteClient;
  16.     connection = c;
  17.     spot = aSpot;
  18.     return self;
  19. }
  20.  
  21. - client
  22. {
  23.     return client;
  24. }
  25.  
  26. - connection
  27. {
  28.     return connection;
  29. }
  30.  
  31. - spot
  32. {
  33.     return spot;
  34. }
  35.  
  36.  
  37.  
  38. @end
  39.