static A lookupSwingAncestor(Map map, Component c) { while (c != null) { A a = map.get(c); if (a != null) ret a; c = getParent(c); } null; }