home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / COWS / Code / COWSLibraryFunctionNode.m < prev    next >
Encoding:
Text File  |  1994-03-05  |  495 b   |  55 lines

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSLibraryFunctionNode.m
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8. */
  9.  
  10.  
  11.  
  12.  
  13. #import "COWSLibraryFunctionNode.h"
  14.  
  15.  
  16. @implementation COWSLibraryFunctionNode
  17.  
  18. - init
  19.     {
  20.     target=NULL;
  21.     return [super init];
  22.     }
  23.     
  24.  
  25. - setTarget:this_target
  26.     {
  27.     target=this_target;
  28.     return self;
  29.     }
  30.     
  31.  
  32. - target
  33.     {
  34.     return target;
  35.     }
  36.     
  37.  
  38. - setSelector:(SEL) this_selector
  39.     {
  40.     selector=this_selector;
  41.     return self;
  42.     }
  43.     
  44.  
  45. - (SEL) selector
  46.     {
  47.     return selector;
  48.     }
  49.     
  50. - printContents
  51.     {
  52.     return self;
  53.     }
  54.         
  55. @end