Object o = _context.valueForKey(key);
if(o != null)
dictionary.setObjectForKey(o, key);
}
String path = "components." + dictionary.objectForKey("componentName") + ".editors";
NSArray keys = (NSArray)_allKeys.valueForKeyPath(path);
if(keys != null) {
for(Enumeration e = keys.objectEnumerator(); e.hasMoreElements(); ) {
String key = (String)e.nextElement();
Object o = _context.valueForKey(key);
if(o != null)
dictionary.setObjectForKey(o, key);
}
}
path = "components." + dictionary.objectForKey("componentName") + ".supports";
keys = (NSArray)_allKeys.valueForKeyPath(path);
if(keys != null) {
for(Enumeration e = keys.objectEnumerator(); e.hasMoreElements(); ) {
String key = (String)e.nextElement();
Object o = _context.valueForKey(key);
if(o != null)
dictionary.setObjectForKey(o, key);
}