home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / ClassEditor.0.3 / Source / CEMethod.h < prev    next >
Encoding:
Text File  |  1995-02-10  |  743 b   |  43 lines

  1. /* CEMethod.h                 
  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.  * Usage: ....
  8.  *
  9.  * Written by:         Thomas Engel
  10.  * Created:            23.10.1993 (Copyleft)
  11.  * Last modified:     12.11.1994
  12.  */
  13.  
  14. #import <appkit/appkit.h>
  15. #import <misckit/MiscProtocols.h>
  16.  
  17. @interface CEMethod : Object <MiscCompare>
  18. {
  19.     id    name;
  20.     id    selectorName;
  21. }
  22.  
  23. + initialize;
  24.  
  25. - init;
  26. - initFromText:theLine;
  27. - free;
  28.  
  29. - (const char *)name;
  30. - (const char *)selectorName;
  31. - methodTokens;
  32. - (int)numberOfArguments;
  33.  
  34. - (BOOL)isInstanceMethod;
  35.  
  36. @end
  37.  
  38. /*
  39.  * History: 13.01.95 Buh
  40.  *            
  41.  *
  42.  * Bugs: - ...
  43.  */