static S getText(final JTextComponent c) { ret c == null ? "" : (S) swingAndWait(func { c.getText() }); } static S getText(final JLabel l) { ret l == null ? "" : (S) swingAndWait(func { l.getText() }); }