accumulatorsEventList.addAll(methodKeyAccumulators);
TableFormat tableFormat = new StatsTableFormat();
StatsMatcherEditor classMatcherEditor = new StatsMatcherEditor(StatsMatcherEditor.FIELD_CLASS);
StatsMatcherEditor methodMatcherEditor = new StatsMatcherEditor(StatsMatcherEditor.FIELD_METHOD);
StatsMatcherEditor signatureMatcherEditor = new StatsMatcherEditor(StatsMatcherEditor.FIELD_SIGNATURE);
accumulatorsEventList = new FilterList(accumulatorsEventList, classMatcherEditor);
accumulatorsEventList = new FilterList(accumulatorsEventList, methodMatcherEditor);
accumulatorsEventList = new FilterList(accumulatorsEventList, signatureMatcherEditor);
TotalsEventList totalsEventList = new TotalsEventList(accumulatorsEventList);
SortedList sortedAccumulators = new SortedList(accumulatorsEventList, NoOpComparator.INSTANCE);
JTable accumulatorsTable = new JTable(new EventTableModel(sortedAccumulators, tableFormat));
JTable totalsTable = new JTable(new EventTableModel(totalsEventList, tableFormat),
accumulatorsTable.getColumnModel()) {