sclass SimpleMechLists extends VirtualMechLists { SS lists = syncCIMap(); S mL_raw(S listName) { ret lists.get(listName); } void append(S listName, S text) { lists.set(listName, appendNewLineIfNempty(lists.get(listName)) + text); } void setText(S listName, S text) { lists.set(listName, text); } });