home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / EODetailSelectionAssociation.h < prev    next >
Encoding:
Text File  |  1996-09-09  |  941 b   |  23 lines

  1. // EODetailSelectionAssociation.h
  2. // Copyright (c) 1995, NeXT Software, Inc. All rights reserved. 
  3. //
  4. // The EODetailSelectionAssociation binds the selection in one EODisplayGroup
  5. // to the set of objects in a relationship property of an EO.  For instance,
  6. // binding a Projects DisplayGroup which contained a list of all projects,
  7. // to the "toProjects" property of an Employee DisplayGroup would cause the
  8. // subset of projects for that employee to be selected in the Projects DisplayGroup.
  9. // Changing the selection in the Projects DisplayGroup would correspondingly add or
  10. // remove objects from the toProjects relationship of the selected employee.
  11. //
  12. // Supported Bindings:
  13. //     selectedObjects:     relationship property of the EO containing the objects
  14. //                          to be selected in the source display group.
  15.  
  16. #import <EOInterface/EOAssociation.h>
  17.  
  18. @interface EODetailSelectionAssociation : EOAssociation
  19. {
  20. }
  21.  
  22. @end
  23.