home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / DatabaseKit / AddressBook / Appender.h < prev    next >
Text File  |  1992-07-09  |  452b  |  21 lines

  1. /* Appender.h
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  */
  6. #import <objc/Object.h>
  7.  
  8.  
  9. @interface Appender:Object
  10. {
  11.     id    scrollView;
  12. }
  13.  
  14. /* prints the doc view of the scroll view */
  15. - print:sender;
  16.  
  17. /* appends the string passed to the doc view of the scroll view */
  18. - appendToText:(const char *)newText;
  19.  
  20. @end
  21.