static void putClientProperty_recursive(final Component c, fO key, fO value) { if (c != null) swing { for (JComponent cc : childrenOfType(c, JComponent.class)) cc.putClientProperty(key, value); } }