Table tableServer = new Table(tabFolder, SWT.BORDER | SWT.FULL_SELECTION);
tbtmServer.setControl(tableServer);
tableServer.setHeaderVisible(true);
tableServer.setLinesVisible(true);
EditListener listener = new EditListener(tableServer, false);
tableServer.addListener(SWT.MouseDown, listener);
TableColumn tblclmnKey = new TableColumn(tableServer, SWT.LEFT);
tblclmnKey.setText(RedisClient.i18nFile.getText(I18nFile.KEY));
tblclmnKey.setWidth(250);
TableColumn tblclmnValue = new TableColumn(tableServer, SWT.LEFT);
tblclmnValue.setWidth(442);
tblclmnValue.setText(RedisClient.i18nFile.getText(I18nFile.VALUE));
TableItem nameItem = new TableItem(tableServer, SWT.NONE);
String[] nameKey = new String[]{RedisClient.i18nFile.getText(I18nFile.NAME), info.getName()};
nameItem.setText(nameKey);
TableItem hostItem = new TableItem(tableServer, SWT.NONE);
String[] hostKey = new String[]{RedisClient.i18nFile.getText(I18nFile.HOST), info.getHost()};
hostItem.setText(hostKey);
TableItem portItem = new TableItem(tableServer, SWT.NONE);
String[] portKey = new String[]{RedisClient.i18nFile.getText(I18nFile.PORT), info.getPort()};
portItem.setText(portKey);
Set<Entry<String, String[]>> set = values.entrySet();
Iterator<Entry<String, String[]>> i = set.iterator();
while(i.hasNext()) {
Map.Entry<String, String[]> entry = (Map.Entry<String, String[]>) i.next();
TabItem tbtmServerInformation = new TabItem(tabFolder, SWT.NONE);
tbtmServerInformation.setText(entry.getKey());
Table table = new Table(tabFolder, SWT.BORDER | SWT.FULL_SELECTION);
tbtmServerInformation.setControl(table);
table.setHeaderVisible(true);
table.setLinesVisible(true);
EditListener listener1 = new EditListener(table, false);
table.addListener(SWT.MouseDown, listener1);
TableColumn clmnKey = new TableColumn(table, SWT.LEFT);
clmnKey.setText(RedisClient.i18nFile.getText(I18nFile.KEY));
clmnKey.setWidth(250);