svoid setText(final JTextComponent c, O text) { setText((O) c, text); } svoid setText(final JLabel c, O text) { setText((O) c, text); } svoid setText(final JButton c, O text) { setText((O) c, text); } svoid setText(O c, O text) { final S s = str(text); swingAndWait(r { call(c, "setText", s) }); }