Warning: session_start(): open(/var/lib/php/sessions/sess_ll5iftp6htpeed0g1ho7efish1, 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 JFrame showCenterFrame(S title, int w, int h) {
ret showCenterFrame(title, w, h, null);
}
static JFrame showCenterFrame(Pt size, Component content) {
ret showCenterFrame(size.x, size.y, content);
}
static JFrame showCenterFrame(int w, int h, Component content) {
ret showCenterFrame(defaultFrameTitle(), w, h, content);
}
static JFrame showCenterFrame(S title, int w, int h, Component content) {
JFrame frame = makeFrame(title, content);
frame.setSize(w, h);
ret centerFrame(frame);
}
static JFrame showCenterFrame(S title, Component content) {
ret centerFrame(makeFrame(title, content));
}
static JFrame showCenterFrame(Component content) {
ret centerFrame(makeFrame(content));
}