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

  1. // EOActionAssociation.h
  2. // Copyright (c) 1995, NeXT Software, Inc. All rights reserved.
  3. //
  4. // Upon receiving a target action message from its object, the  EOActionAssociation
  5. // performs a selector named by its "action" aspect on all EOs selected in the
  6. // DisplayGroup to which it is bound.  This is most often used to bind a button to
  7. // a method in an EO.
  8. //
  9. // Bindings:
  10. //     action:         name of the selector to perform
  11. //     argument:       if bound this aspect identifies to argument to be passed to the action.
  12. //     editable:       BOOL property of EO indicating whether the object should be enabled
  13. //
  14.  
  15. #import <EOInterface/EOAssociation.h>
  16.  
  17. // For views and cells
  18. @interface EOActionAssociation : EOAssociation
  19. {
  20. }
  21. @end
  22.