Warning: session_start(): open(/var/lib/php/sessions/sess_qhepgq07i6lf74thiucti7v351, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static S getText(final JAbstractButton c) {
ret c == null ? "" : (S) swingAndWait(func { c.getText() });
}
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() });
}
// returns the contents of text field for editable combo box
static S getText(final JComboBox cb) {
if (cb.isEditable())
ret unnull((S) cb.getEditor().getItem());
else
ret str(cb.getSelectedItem());
}