00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Cocoa/Cocoa.h>
00010
00011
00012 @interface LLNotificationCenterEntry : NSObject {
00013 NSString *name;
00014 id source;
00015 id target;
00016 SEL selector;
00017 bool useLocks;
00018 bool mainLoop;
00019 id userData;
00020 }
00021
00022 - (id) initWithNotificationName:(NSString*) notification source:(id) src target:(id) targ
00023 selector:(SEL)sel useLocks:(bool)protect useMainLoop:(bool)useMainLoop;
00024
00025 - (NSString *)name;
00026 - (id) source;
00027 - (id) target;
00028 - (SEL) selector;
00029 - (bool) useLocks;
00030 - (bool) useMainLoop;
00031 - (void) setUserData:(id)data;
00032 - (id) userData;
00033
00034 @end