5 // Created by Sam McCall on 4/05/09.
11 if(self=[super init]) {
12 entries = [[NSMutableDictionary alloc] init];
17 @synthesize protect, name, entries;
19 -(void) setTarget:(Target*)target forAction:(id)jsa {
20 [entries setValue:target forKey: [jsa stringify]];
22 -(Target*) getTargetForAction: (id) jsa {
23 return entries[[jsa stringify]];