!7 sclass ProcessResidentSize extends DynBigNumber { void start { super.start(); setDescription("OS SIZE IN MEMORY"); ownTimer(doEveryAndNow(30000, r actualUpdate)); } void actualUpdate { setValue(toM(getProcessSize()) + " MB"); } JComponent visualize() { ret setToolTipText("Process ID: " + getProcessID(), componentPopupMenuItem(super.visualize(), "Garbage Collect", r { dm_gc(); actualUpdate(); })); } }