sbool isGrandChildOf(Component a, Component b) { if (a == b) true; while ((a = getParent(a)) != null) if (a == b) true; false; }