List of usage examples for com.google.gwt.eclipse.core.launch.ui.tabs GwtCompilerSettingsTab GwtCompilerSettingsTab
public GwtCompilerSettingsTab(ILaunchArgumentsContainer argsContainer)
From source file:com.google.gdt.eclipse.suite.launch.ui.tab_groups.GwtCompilerTabGroup.java
License:Open Source License
@Override public void createTabs(ILaunchConfigurationDialog dialog, String mode) { launchConfigurationDialog = dialog;/* w ww. java2 s . com*/ WebAppArgumentsTab argsTab = new WebAppArgumentsTab(); GwtCompilerSettingsTab gwtSettingsTab = new GwtCompilerSettingsTab(argsTab); WebAppMainTab webAppMainTab = new WebAppMainTab(); ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { webAppMainTab, gwtSettingsTab, argsTab, new JavaJRETab(), new JavaClasspathTab(), new SourceLookupTab(), new EnvironmentTab(), new CommonTab() }; setTabs(tabs); }