static JComponent infoBoxPanel(S text) {
  ret getInfoBoxPanel(infoBox(text));
}

static JComponent infoBoxPanel(S text, double seconds) {
  ret getInfoBoxPanel(infoBox(text, seconds));
}

static JComponent infoBoxPanel(Throwable e) {
  ret getInfoBoxPanel(infoBox(e));
}