abstract sclass DynPrintLog extends DynModule { transient JTextArea ta; JComponent visualize() { singleTimer(doEvery(1000, r updateMe)); ret jSection("SYSTEM LOG", ta = moveCaretToEnd(typeWriterTextArea(localPrintLog()))); } void update { if (ta != null) setText(ta, localPrintLog()); } }