home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / QueryByExample / QBEPalette / TableMagic.h < prev    next >
Encoding:
Text File  |  1995-01-25  |  511 b   |  14 lines

  1. // TableMagic - some useful methods for dealing with tableViews tied to controllers.
  2.  
  3. #import <eointerface/eointerface.h>
  4.  
  5. @interface NXTableView (tableMagic)
  6. + keyTableView;
  7.     // returns currently selected TableView, or nil if none
  8. - (EOController *)eoController;
  9.     // EOController that is feeding this table
  10. - (NSString *)associationKeyForColumn: (unsigned int)colNum;
  11. - (NSArray *)associationKeysForSelectedColumns;
  12.     // keys for the associations connected to the currently selected table columns
  13. @end
  14.