public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
List<ILaunchConfigurationTab> tabs = new ArrayList<ILaunchConfigurationTab>(5);
tabs.add(new ServerLaunchConfigurationTab(IKarafServerDelegate.SERVER_IDS_SUPPORTED));
tabs.add(new JavaArgumentsTab());
tabs.add(new JavaClasspathTab());
// tabs.add(new SourceLookupTab());
tabs.add(new EnvironmentTab());
tabs.add(new CommonTab());
setTabs(tabs.toArray( new ILaunchConfigurationTab[tabs.size()]));
}