static B getOrCreate(Map map, A key, Class c) ctex { B b = map.get(key); if (b == null) map.put(key, b = c.newInstance()); ret b; } static B getOrCreate(Class c, Map map, A key) { ret getOrCreate(map, key, c); }