Example usage for com.google.gwt.eclipse.core.launch.util GwtSuperDevModeCodeServerLaunchUtil setDefaults

List of usage examples for com.google.gwt.eclipse.core.launch.util GwtSuperDevModeCodeServerLaunchUtil setDefaults

Introduction

In this page you can find the example usage for com.google.gwt.eclipse.core.launch.util GwtSuperDevModeCodeServerLaunchUtil setDefaults.

Prototype

public static void setDefaults(ILaunchConfigurationWorkingCopy launchConfig, IProject project) 

Source Link

Document

Creating a new launch config, setup the default arguments.

If the project doesn't have focus, the updateViaProcessors will not run.

Usage

From source file:com.google.gdt.eclipse.suite.launch.ui.tab_groups.GwtCompilerTabGroup.java

License:Open Source License

@Override
public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
    super.setDefaults(configuration);

    GwtSuperDevModeCodeServerLaunchUtil.setDefaults(configuration, null);

    GWTLaunchConfigurationWorkingCopy.setMainType(configuration,
            GwtLaunchConfigurationProcessorUtilities.GWT_COMPILER);
}

From source file:com.google.gdt.eclipse.suite.launch.ui.tab_groups.GwtSuperDevModeCodeServerTabGroup.java

License:Open Source License

@Override
public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
    super.setDefaults(configuration);

    GwtSuperDevModeCodeServerLaunchUtil.setDefaults(configuration, null);

    GWTLaunchConfigurationWorkingCopy.setMainType(configuration,
            GwtLaunchConfigurationProcessorUtilities.GWT_CODE_SERVER);
}