@Override
public void prepareResultPanels(Map<String, String> stmtMap) {
for (String id : stmtMap.keySet()) {
if (!resultPanelMap.containsKey(id)) {
EGQLResultPanel resultPanel = new EGQLResultPanel().withStatement(stmtMap.get(id));
resultTabPanel.add(resultPanel);
resultTabPanel.selectTab(resultPanel); // switch to new tab
resultPanelMap.put(id, resultPanel);
}
}