static L findButtons(Component c, S name) { new L l; for (JButton b : childrenOfType(c, JButton.class)) if (eq(b.getText(), name)) l.add(b); ret l; }