home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- #import <objc/Object.h>
-
- @interface BinderHandler:Object
- {
- id myBinder;
- id myDatabase;
- id authorEntity;
- id authorPrototype;
- id propertyList; /* Property list used with the binder object */
- id containerList;
- id lastNameField;
- id stateField;
- id theTextView;
- char buf[100];
- }
-
- /* Application Delegate methods */
- - appDidInit:sender;
-
-
- /* BinderHandler Methods */
- - initBinder;
- - findAllRecords;
- - findByName:sender;
- - findByState:sender;
- - showAllRecords:sender;
-
- /* Display methods */
- - appendToText:(const char *)newText;
- @end
-
- /* Binder Prototype Object */
- @interface Author:Object
- {
- char *first;
- char *last;
- char *phone;
- char *address;
- char *state;
- char *zip;
- }
-
- - printSelf;
-
- @end
-