Example usage for com.google.gwt.eclipse.core.launch.ui.tabs GwtCompilerSettingsTab GwtCompilerSettingsTab

List of usage examples for com.google.gwt.eclipse.core.launch.ui.tabs GwtCompilerSettingsTab GwtCompilerSettingsTab

Introduction

In this page you can find the example usage for com.google.gwt.eclipse.core.launch.ui.tabs GwtCompilerSettingsTab GwtCompilerSettingsTab.

Prototype

public GwtCompilerSettingsTab(ILaunchArgumentsContainer argsContainer) 

Source Link

Usage

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);
}