home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / DatabaseKit / Binder / BinderHandler.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-20  |  748 b   |  49 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import <objc/Object.h>
  5.  
  6. @interface BinderHandler:Object
  7. {
  8.     id myBinder;
  9.     id myDatabase;
  10.     id authorEntity;
  11.     id authorPrototype;
  12.     id propertyList;    /* Property list used with the binder object */
  13.     id containerList;
  14.     id lastNameField;
  15.     id stateField;
  16.     id theTextView;
  17.     char buf[100];
  18. }
  19.  
  20. /* Application Delegate methods */
  21. - appDidInit:sender;
  22.  
  23.  
  24. /* BinderHandler Methods */
  25. - initBinder;
  26. - findAllRecords;
  27. - findByName:sender;
  28. - findByState:sender;
  29. - showAllRecords:sender;
  30.  
  31. /* Display methods */
  32. - appendToText:(const char *)newText;
  33. @end
  34.  
  35. /* Binder Prototype Object */
  36. @interface Author:Object
  37. {
  38.       char *first;
  39.       char *last;
  40.       char *phone;
  41.     char *address;
  42.       char *state;
  43.       char *zip;
  44. }
  45.  
  46. - printSelf;
  47.  
  48. @end
  49.