home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / DatabaseKit / Binder / BinderHandler.h < prev    next >
Text File  |  1992-07-09  |  727b  |  48 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 propertyList;    /* Property list used with the binder object */
  12.     id containerList;
  13.     id lastNameField;
  14.     id stateField;
  15.     id theTextView;
  16.     char buf[100];
  17. }
  18.  
  19. /* Application Delegate methods */
  20. - appDidInit:sender;
  21.  
  22.  
  23. /* BinderHandler Methods */
  24. - initBinder;
  25. - findAllRecords;
  26. - findBy@p:sender;
  27. - findByState:sender;
  28. - showAllRecords:sender;
  29.  
  30. /* Display methods */
  31. - appendToText:(const char *)newText;
  32. @end
  33.  
  34. /* Binder Prototype Object */
  35. @interface Author:Object
  36. {
  37.       char *first;
  38.       char *last;
  39.       char *phone;
  40.     char *address;
  41.       char *state;
  42.       char *zip;
  43. }
  44.  
  45. - printSelf;
  46.  
  47. @end
  48.