Warning: session_start(): open(/var/lib/php/sessions/sess_6ac2h0pglmmsnog1q7f502igc3, 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 showFrame() {
ret makeFrame();
}
static JFrame showFrame(O content) {
ret makeFrame(content);
}
static JFrame showFrame(S title) {
ret makeFrame(title);
}
static JFrame showFrame(String title, O content) {
ret makeFrame(title, content);
}
static JFrame showFrame(JFrame frame) {
if (frame != null) swing {
if (frameTooSmall(frame)) frameStandardSize(frame);
frame.setVisible(true);
}
ret frame;
}
// make or update frame
static JFrame showFrame(String title, O content, JFrame frame) {
if (frame == null)
ret showFrame(title, content);
else {
frame.setTitle(title);
setFrameContents(frame, content);
ret frame;
}
}