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