/Volumes/Plantain/MyDocuments/Projects/MacTrek/MacTrek/Luky/Comm/LLNotificationCenterEntry.h

00001 //
00002 //  LLNotificationCenterEntry.h
00003 //  MacTrek
00004 //
00005 //  Created by Aqua on 27/04/2006.
00006 //  Copyright 2006 __MyCompanyName__. All rights reserved.
00007 //
00008 
00009 #import <Cocoa/Cocoa.h>
00010 
00011 
00012 @interface LLNotificationCenterEntry : NSObject {
00013     NSString *name; // name of entry we want, nil means all
00014     id source;      // source id we want, nil means all
00015     id target;      // target object
00016     SEL selector;   // selector at target
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 //- (id) initWithNotificationName:(NSString*) notification source:(id) src target:(id) targ selector:(SEL)sel; 
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

Generated on Fri Jul 28 19:15:22 2006 for MacTrek by  doxygen 1.4.7