home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / Bookmark.subproj / eTBookmarkEnd.h < prev    next >
Encoding:
Text File  |  1994-06-17  |  879 b   |  31 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //    FILENAME:    eTBookmarkEnd.h 
  3. //    SUMMARY:    Interface for the "stupid" end-of-region tag
  4. //    SUPERCLASS:    Object
  5. //    INTERFACE:    None
  6. //    PROTOCOLS:    <Annotation>
  7. //    AUTHOR:        Rohit Khare
  8. //    COPYRIGHT:    (c) 1994 California Institure of Technology, eText Project
  9. ///////////////////////////////////////////////////////////////////////////////
  10. //  DESCRIPTION
  11. //        You name it.
  12. ///////////////////////////////////////////////////////////////////////////////
  13. //    HISTORY
  14. //    05/08/94:    Created. First actual implementation.
  15. ///////////////////////////////////////////////////////////////////////////////
  16.  
  17. #import "Bookmark.h"
  18.  
  19. @interface eTBookmarkEnd:Object <Annotation>
  20. {
  21.     id         etBookmark;
  22.     id        theIcon;
  23.     BOOL    highlighted;
  24.     long    anchorID;
  25. }
  26.  
  27. - init:theBookmark ID:(long)theID;
  28. - click:sender;
  29. - beginDidFree;
  30. @end
  31.