Warning: session_start(): open(/var/lib/php/sessions/sess_n89u2aof1noh0h9me02lvn7jcd, 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 JPanel scrollable_trackWidth(final Component component) {
class P extends SingleComponentPanel implements Scrollable {
*() { super(component); }
public Dimension getPreferredScrollableViewportSize() { ret getPreferredSize(); }
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) { return 20; }
public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
ret (direction == SwingConstants.HORIZONTAL ? visibleRect.width : visibleRect.height)*5/6;
}
public bool getScrollableTracksViewportWidth() { true; }
public boolean getScrollableTracksViewportHeight() { false; }
}
ret swing(func -> P { new P });
}