home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / PerformanceTuning / VisibleView-03 / Appender.h next >
Text File  |  1991-10-18  |  626b  |  25 lines

  1. //
  2. //    An Object to Append Text to IB's Default ScrollView
  3. //    Randy Nelson—Copyright NeXT Computer, Inc 1990 All Rights Reserved
  4. //    Created 5-1-90
  5. //    Modified 9-3-90 -- Removed outlet initializers.
  6. //
  7. //    You may freely copy, distribute and reuse the code in this example.
  8. //    NeXT disclaims any warranty of any kind, expressed or implied, as to
  9. //    its fitness for any particular use.
  10. //
  11.  
  12. #import <objc/Object.h>
  13.  
  14. @interface Appender:Object
  15. {
  16.     id    scrollView;
  17. }
  18.  
  19. //prints the doc view of the scroll view
  20. - print:sender;
  21. //appends the string passed to the doc view of the scroll view
  22. - appendToText:(const char *)newText;
  23.  
  24. @end
  25.