initJoinPointGeneratorsMap();
joinPointGenerators.put(info.getJoinpoint(), map);
map = (ConcurrentHashMap)joinPointGenerators.get(info.getJoinpoint());
}
MethodByMethodJoinPointGenerator generator = (MethodByMethodJoinPointGenerator)map.get(info.getCalledClass());
if (generator == null)
{
generator = new MethodByMethodJoinPointGenerator(GeneratedClassAdvisor.this, info);
map.put(info.getCalledClass(), generator);
generator = (MethodByMethodJoinPointGenerator)map.get(info.getCalledClass());
}
return generator;
}