Warning: session_start(): open(/var/lib/php/sessions/sess_uq41unlr9qgspgioa9tckcmq58, 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 DynTable extends DynModule { transient JTable table; transient L data; JComponent visualize() { table = dataToTable_uneditable(sexyTable(), data = calc()); onDoubleClickOrEnter(table, voidfunc(int row) { Map line = _get(data, row); if (line != null) onDoubleClick(line); }); ret table; } void unvisualize() { table = null; } void onDoubleClick(Map line) {} void update() { lock lock; if (table != null) dataToTable_uneditable(table, data = calc()); } // should cache results if they are expensive to make abstract L calc(); }