home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / SHLExamples / Sorting / SortController.h < prev    next >
Encoding:
Text File  |  1994-07-31  |  831 b   |  48 lines

  1. /*--------------------------------------------------------------------------
  2.  *
  3.  *     You may freely copy, distribute, and reuse the code in this example.
  4.  *     SHL Systemhouse disclaims any warranty of any kind, expressed or  
  5.  *    implied, as to its fitness for any particular use.
  6.  *
  7.  *
  8.  *    SortController
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        None
  13.  *
  14.  *    Declared In:        SortController.h
  15.  *
  16.  *    Class Description
  17.  *
  18.  *        Handles sort ordering in an NXTableView.
  19.  *
  20.  *
  21.  *------------------------------------------------------------------------*/
  22. #import <foundation/NSObject.h>
  23.  
  24. @class NSMutableArray;
  25.  
  26.  
  27.  
  28. @interface SortController : NSObject
  29. {
  30.     id    controller;
  31.     id    entity;
  32.     id    tableView;
  33.  
  34.     id    attributeOrder;
  35.     id    scrollView;
  36.     id    priority;
  37.     id    hints;
  38.     id    window;
  39.  
  40. }
  41.  
  42. - doIt:sender;
  43. - ofSorts:sender;
  44. - changeOrder:sender;
  45.  
  46.  
  47. @end
  48.