Warning: session_start(): open(/var/lib/php/sessions/sess_phms9c2ie8cfv4o96qfbufemtj, 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 A setBounds(int x, int y, int w, int h, A a) {
if (a != null)
a.setBounds(x, y, w, h);
ret a;
}
static A setBounds(A a, Rect r) {
if (a != null)
a.setBounds(toRectangle(r));
ret a;
}
static A setBounds(A a, int x, int y, int w, int h) {
ret setBounds(x, y, w, h, a);
}