shell.setLayout(new GridLayout(1, false));
TabFolder tabFolder = new TabFolder(shell, SWT.NONE);
tabFolder.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
TabItem tbtmString = new TabItem(tabFolder, SWT.NONE);
tbtmString.setText(RedisClient.i18nFile.getText(I18nFile.FAVORITE));
Composite composite = new Composite(tabFolder, SWT.NONE);
tbtmString.setControl(composite);
composite.setLayout(new GridLayout(2, false));
Label lblNewKey = new Label(composite, SWT.NONE);
lblNewKey.setText(RedisClient.i18nFile.getText(I18nFile.NAME));