Lines Matching refs:aKey
89 - (id) objectForKey:(id)aKey
97 if ( [aKey isKindOfClass:[NSString class]] ) {
98 kp = [ACBKey newKeyWithKStr:aKey];
101 else if ( [aKey isKindOfClass:[ACBKey class]] ) {
102 kp = aKey;
103 //ACBKey *akey = [ACBKey newKey:aKey];
107 … reason:[NSString stringWithFormat:@"What kind of key is this? %@", aKey]
125 - (void) setObject:(id)obj forKey:(id)aKey
129 if ( [aKey isKindOfClass:[NSString class]] ) {
130 kp = [ACBKey newKeyWithKStr:aKey];
133 else if ( [aKey isKindOfClass:[ACBKey class]] ) {
134 kp = (ACBKey *)aKey;
138 … reason:[NSString stringWithFormat:@"What kind of key is this? %@", aKey]
162 - (void) removeObjectForKey:(id)aKey
164 if ( [root deletekey:aKey] == SUCCESS )