home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Palettes / ConnectDemo / EDBOutlet.h < prev    next >
Encoding:
Text File  |  1993-02-22  |  440 b   |  24 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface EDBOutlet:Object
  5. {
  6.     NXAtom        outletName;        // Name of the Outlet
  7.     BOOL        multiUse;        // YES = more than one connection per outlet
  8.     BOOL        isTarget;        // YES = target-action outlet
  9. }
  10.  
  11. - init;
  12. - read:(NXTypedStream *)stream;
  13. - write:(NXTypedStream *)stream;
  14.  
  15. - setOutletName:(NXAtom)name;
  16. - setMultiUse:(BOOL)multi;
  17. - setIsTarget:(BOOL)target;
  18.  
  19. - (NXAtom)outletName;
  20. - (BOOL)multiUse;
  21. - (BOOL)isTarget;
  22.  
  23. @end
  24.