home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
- #import <apps/InterfaceBuilder.h>
-
- @interface EDBConnector:Object <IBConnectors>
- {
- id source;
- id destination;
- NXAtom outletName;
- const char *selName;
- u_short sequence; // ordering of connections if one outlet is
- // connected to more than one target
- }
-
- - init;
- - initWithSource:s andDestination:d forOutlet:(const char *)name
- andSel:(const char *)sel;
- - free;
- - source;
- - destination;
- - establishConnection;
- - nibInstantiate;
- - renewObject:old to:new;
- - read:(NXTypedStream *)stream;
- - write:(NXTypedStream *)stream;
-
- - (NXAtom)outletName;
- - setOutletName:(NXAtom)name;
- - (const char *)selName;
- - setSelName:(const char *)name;
- - (u_short)sequence;
- - setSequence:(u_short)seq;
-
- @end
-