Warning: session_start(): open(/var/lib/php/sessions/sess_m85ibnhcv6qkod98dnfedi5hrq, 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
abstract sclass DynBigInputAndList extends DynObjectTable { S text; switchable int fontSize = 20; transient Trigger trigger_makeList = new(r makeList); start { new Dyn_FieldWatcher(this, 'text, trigger_makeList); } visual withComputing(trigger_makeList, jvsplit(setFontSize(fontSize, dm_textArea('text)), wrapListComponent(super))); // override me JComponent wrapListComponent(JComponent component) { ret component; } void makeList() q { if (!trigger_makeList.check()) ret; makeList_impl(); } abstract void makeList_impl(); }