org.eclipse.debug.ui.ILaunchConfigurationDialog Java Examples

The following examples show how to use org.eclipse.debug.ui.ILaunchConfigurationDialog. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GwtCompilerTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 6 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
  launchConfigurationDialog = dialog;

  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);
}
 
Example #2
Source File: WebAppTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 6 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
  launchConfigurationDialog = dialog;

  WebAppArgumentsTab argsTab = new WebAppArgumentsTab();

  GWTSettingsTab gwtSettingsTab = null;

  ExtensionQuery<IGWTSettingsTabFactory> extQuery = new ExtensionQuery<IGWTSettingsTabFactory>(GWTPlugin.PLUGIN_ID,
      "gwtSettingsTabFactory", "class");
  List<ExtensionQuery.Data<IGWTSettingsTabFactory>> gwtSettingsTabFactories = extQuery.getData();
  for (ExtensionQuery.Data<IGWTSettingsTabFactory> factory : gwtSettingsTabFactories) {
    IGWTSettingsTabFactory tabFactory = factory.getExtensionPointData();
    gwtSettingsTab = tabFactory.newInstance(argsTab);
    break;
  }

  if (gwtSettingsTab == null) {
    gwtSettingsTab = new GWTSettingsTab(argsTab);
  }

  ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { new WebAppMainTab(),
      new WebAppServerTab(argsTab, true, true), gwtSettingsTab, argsTab, new JavaJRETab(),
      new JavaClasspathTab(), new SourceLookupTab(), new EnvironmentTab(), new CommonTab() };
  setTabs(tabs);
}
 
Example #3
Source File: PipelineArgumentsTabTest.java    From google-cloud-eclipse with Apache License 2.0 6 votes vote down vote up
@Test
public void assertRunnerButtonChecked() throws CoreException {
  ILaunchConfigurationDialog dialog = mock(ILaunchConfigurationDialog.class);
  Shell shell = shellResource.getShell();
  PipelineArgumentsTab tab = new PipelineArgumentsTab();
  tab.setLaunchConfigurationDialog(dialog);
  ScrolledComposite scrolledComposite =
      new ScrolledComposite(shellResource.getShell(), SWT.V_SCROLL | SWT.H_SCROLL);
  scrolledComposite.setExpandHorizontal(true);
  scrolledComposite.setExpandVertical(true);
  tab.createControl(scrolledComposite);

  PipelineLaunchConfiguration launchConfig = PipelineLaunchConfiguration
      .fromLaunchConfiguration(testParameter.majorVersion, mock(ILaunchConfiguration.class));
  tab.updateRunnerButtons(launchConfig);
  Button runnerButton = getCheckedRunnerButton(shell);
  assertNotNull(runnerButton);
  assertEquals(testParameter.expectedButtonText, runnerButton.getText());
  assertTrue(runnerButton.getSelection());

  // Should not throw IllegalStateException:
  // https://github.com/GoogleCloudPlatform/google-cloud-eclipse/issues/2136
  tab.getSelectedRunner();
  testScrollbar(tab);
}
 
Example #4
Source File: SARLApplicationLaunchConfigurationTabGroup.java    From sarl with Apache License 2.0 6 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	final SARLApplicationMainLaunchConfigurationTab mainTab = new SARLApplicationMainLaunchConfigurationTab();
	final SARLRuntimeEnvironmentTab sreTab = new SARLRuntimeEnvironmentTab(false);
	sreTab.addSreChangeListener(mainTab);
	final ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
		mainTab,
		new JavaArgumentsTab(),
		sreTab,
		getClasspathTab(dialog),
		new SourceLookupTab(),
		new EnvironmentTab(),
		new CommonTab(),
	};
	setTabs(tabs);
}
 
Example #5
Source File: SARLAgentLaunchConfigurationTabGroup.java    From sarl with Apache License 2.0 6 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	final SARLAgentMainLaunchConfigurationTab mainTab = new SARLAgentMainLaunchConfigurationTab();
	final SARLRuntimeEnvironmentTab sreTab = new SARLRuntimeEnvironmentTab(true);
	sreTab.addSreChangeListener(mainTab);
	final ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
		mainTab,
		new SARLArgumentsTab(),
		sreTab,
		getClasspathTab(dialog),
		new SourceLookupTab(),
		new EnvironmentTab(),
		new CommonTab(),
	};
	setTabs(tabs);
}
 
Example #6
Source File: AnalysisEngineTabGroup.java    From uima-uimaj with Apache License 2.0 6 votes vote down vote up
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {

    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
            new AnalysisEngineMainTab(),
            new JavaArgumentsTab(),
            new JavaJRETab(),  // Java Runtime Environment
            new JavaClasspathTab(),
            // TODO: Error launch configuration does not support source lookup, why not?
            // It should be on the tab.
            new SourceLookupTab(),
            new EnvironmentTab(),
            new CommonTab()
            };
    
    setTabs(tabs);
  }
 
Example #7
Source File: PythonUnittestTabGroup.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog arg0, String arg1) {
    MainModuleTab mainModuleTab = new MainModuleTab();
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { mainModuleTab,
            new UnittestArgumentsTab(mainModuleTab), new InterpreterTab(InterpreterManagersAPI.getPythonInterpreterManager()),
            new RefreshTab(), new EnvironmentTab(), new CommonTab() };
    setTabs(tabs);
}
 
Example #8
Source File: GWTJUnitTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {

  ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
      new JUnitLaunchConfigurationTabDecorator(), new GWTJUnitSettingsTab(),
      new JavaArgumentsTab(), new JavaClasspathTab(), new JavaJRETab(),
      new SourceLookupTab(), new EnvironmentTab(), new CommonTab()};
  setTabs(tabs);
}
 
Example #9
Source File: IronpythonTabGroup.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog arg0, String arg1) {
    MainModuleTab mainModuleTab = new MainModuleTab();
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { mainModuleTab,
            new ArgumentsTab(mainModuleTab), new InterpreterTab(InterpreterManagersAPI.getIronpythonInterpreterManager()),
            new RefreshTab(), new EnvironmentTab(), new CommonTab() };
    setTabs(tabs);
}
 
Example #10
Source File: JythonTabGroup.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
    MainModuleTab mainModuleTab = new MainModuleTab();
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { mainModuleTab,
            new ArgumentsTab(mainModuleTab), new InterpreterTab(InterpreterManagersAPI.getJythonInterpreterManager()),
            new RefreshTab(), new EnvironmentTab(), new CommonTab() };
    setTabs(tabs);
}
 
Example #11
Source File: JythonUnittestTabGroup.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
    MainModuleTab mainModuleTab = new MainModuleTab();
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { mainModuleTab,
            new UnittestArgumentsTab(mainModuleTab), new InterpreterTab(InterpreterManagersAPI.getJythonInterpreterManager()),
            new RefreshTab(), new EnvironmentTab(), new CommonTab() };
    setTabs(tabs);
}
 
Example #12
Source File: ProjectDependentTabGroup.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog arg0, String arg1) {
    MainModuleTab mainModuleTab = new MainModuleTab();
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { mainModuleTab,
            new ArgumentsTab(mainModuleTab), new InterpreterTab(), new RefreshTab(), new EnvironmentTab(),
            new CommonTab() };
    setTabs(tabs);
}
 
Example #13
Source File: LauncherTabGroup.java    From xds-ide with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
			new LauncherTabMain(),
               new LauncherTabArguments(),
               new LauncherTabSettings(false),
			new EnvironmentTab(),
			new CommonTab()
		};
		setTabs(tabs);		
}
 
Example #14
Source File: MainModuleTab.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void setLaunchConfigurationDialog(ILaunchConfigurationDialog dialog) {
    super.setLaunchConfigurationDialog(dialog);

    fProjectBlock.setLaunchConfigurationDialog(dialog);
    fMainModuleBlock.setLaunchConfigurationDialog(dialog);
    fPythonPathBlock.setLaunchConfigurationDialog(dialog);
}
 
Example #15
Source File: LaunchConfigurationTabGroup.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
			new LaunchConfigurationMainTab(),
	};
	setTabs(tabs);
}
 
Example #16
Source File: NodeAttachDebugTabGroup.java    From wildwebdeveloper with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	setTabs(new ILaunchConfigurationTab[] {
		new NodeAttachDebugTab(),
		new DSPOverrideSettingsTab(),
		new CommonTab()
	});
}
 
Example #17
Source File: NodeRunDebugTabGroup.java    From wildwebdeveloper with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	setTabs(new ILaunchConfigurationTab[] {
		new RunProgramTab(),
		new EnvironmentTab(),
		new DSPOverrideSettingsTab(),
		new CommonTab()
	});
}
 
Example #18
Source File: NpmLaunchTabGroup.java    From wildwebdeveloper with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	setTabs(new ILaunchConfigurationTab[] {
		new NpmLaunchTab(),
		new EnvironmentTab(),
		new CommonTab()
	});
}
 
Example #19
Source File: LaunchConfigCleanerPDETest.java    From eclipse-extras with Eclipse Public License 1.0 5 votes vote down vote up
private ILaunchConfiguration createLaunchConfigInDialog() throws CoreException {
  ILaunchConfigurationDialog dialog = mock( ILaunchConfigurationDialog.class );
  LaunchConfigurationsDialog.setCurrentlyVisibleLaunchConfigurationDialog( dialog );
  ILaunchConfiguration launchConfig = launchConfigRule.createPublicLaunchConfig().doSave();
  LaunchConfigurationsDialog.setCurrentlyVisibleLaunchConfigurationDialog( null );
  return launchConfig;
}
 
Example #20
Source File: JReFrameworkerTabGroup.java    From JReFrameworker with MIT License 5 votes vote down vote up
/**
 * Creates the tabs contained in this tab group for the specified launch
 * mode.
 * 
 * @author Ben Holland
 */
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
			new JavaMainTab(),
			new JavaArgumentsTab(),
			new JavaJRETab(),
			new JavaClasspathTab(),
			new EnvironmentTab(),
			new CommonTab()
	};
	setTabs(tabs);
}
 
Example #21
Source File: DataflowPipelineLaunchConfigurationTabGroup.java    From google-cloud-eclipse with Apache License 2.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
  // Use the same tab layout as the Java tabs, except with a custom Arguments tab
  List<ILaunchConfigurationTab> tabs = new ArrayList<>();
  JavaMainTab javaMainTab = new JavaMainTab();
  tabs.add(javaMainTab);

  PipelineArgumentsTab pipelineArgumentsTab = new PipelineArgumentsTab();
  tabs.add(pipelineArgumentsTab);

  JavaArgumentsTab javaArgumentsTab = new JavaArgumentsTab();
  tabs.add(javaArgumentsTab);

  JavaJRETab jreTab = new JavaJRETab();
  tabs.add(jreTab);

  JavaClasspathTab classpathTab = new JavaClasspathTab();
  tabs.add(classpathTab);

  SourceLookupTab sourceLookupTab = new SourceLookupTab();
  tabs.add(sourceLookupTab);

  EnvironmentTab environmentTab = new EnvironmentTab();
  tabs.add(environmentTab);

  CommonTab commonTab = new CommonTab();
  tabs.add(commonTab);

  setTabs(tabs.toArray(new ILaunchConfigurationTab[0]));
}
 
Example #22
Source File: GwtSuperDevModeCodeServerTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
  launchConfigurationDialog = dialog;

  WebAppArgumentsTab argsTab = new WebAppArgumentsTab();

  GwtSuperDevModeCodeServerSettingsTab gwtSettingsTab = null;

  ExtensionQuery<IGWTSettingsTabFactory> extQuery = new ExtensionQuery<IGWTSettingsTabFactory>(GWTPlugin.PLUGIN_ID, "gwtSettingsTabFactory", "class");
  List<ExtensionQuery.Data<IGWTSettingsTabFactory>> gwtSettingsTabFactories = extQuery.getData();
  for (ExtensionQuery.Data<IGWTSettingsTabFactory> factory : gwtSettingsTabFactories) {
    IGWTSettingsTabFactory tabFactory = factory.getExtensionPointData();
    gwtSettingsTab = tabFactory.newInstance(argsTab);
    break;
  }

  if (gwtSettingsTab == null) {
    gwtSettingsTab = new GwtSuperDevModeCodeServerSettingsTab(argsTab);
  }

  WebAppMainTab webAppMainTab = new WebAppMainTab();

  ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
      webAppMainTab,
      gwtSettingsTab,
      argsTab,
      new JavaJRETab(),
      new JavaClasspathTab(),
      new SourceLookupTab(),
      new EnvironmentTab(),
      new CommonTab()};
  setTabs(tabs);
}
 
Example #23
Source File: DefaultLaunchConfigurationTabGroup.java    From txtUML with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
			new JavaMainTab(),
			new JavaArgumentsTab(),
			new JavaJRETab(),
			new JavaClasspathTab(),
			new SourceLookupTab(),
			new EnvironmentTab(),
			new CommonTab()
	};
	setTabs(tabs);
}
 
Example #24
Source File: WinLaunchConfigurationTabGroup.java    From thym with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	WinOptionsTab winTab = new WinOptionsTab();
	EnvironmentTab env = new EnvironmentTab();
	CommonTab common = new CommonTab();
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { winTab,
			env, common };
	setTabs(tabs);
}
 
Example #25
Source File: AndroidLaunchConfigurationTabGroup.java    From thym with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog arg0, String arg1) {
	EnvironmentTab env = new EnvironmentTab();
	CommonTab common = new CommonTab();
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
		new AndroidSimOptionsTab(),
		env,
		common
	};
	setTabs(tabs);
}
 
Example #26
Source File: IOSSimLaunchConfigurationTabGroup.java    From thym with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	EnvironmentTab env = new EnvironmentTab();
	CommonTab common = new CommonTab();
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
			new IOSSimOptionsTab(),
		env,
		common
	};
	setTabs(tabs);


}
 
Example #27
Source File: WPLaunchConfigurationTabGroup.java    From thym with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	WPOptionsTab wpTab = new WPOptionsTab();
	EnvironmentTab env = new EnvironmentTab();
	CommonTab common = new CommonTab();
	ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { wpTab,
			env, common };
	setTabs(tabs);
}
 
Example #28
Source File: ReportTabGroup.java    From birt with Eclipse Public License 1.0 5 votes vote down vote up
public void createTabs( ILaunchConfigurationDialog dialog, String mode )
{
	ILaunchConfigurationTab tabs[] = (ILaunchConfigurationTab[]) null;
	tabs = ( new ILaunchConfigurationTab[]{
			new ReportAdvancedLauncherTab( ), new PluginsTab( false )
	} );
	setTabs( tabs );
}
 
Example #29
Source File: ScriptTabGroup.java    From birt with Eclipse Public License 1.0 5 votes vote down vote up
public void createTabs( ILaunchConfigurationDialog dialog, String mode )
{
	ILaunchConfigurationTab tabs[] = null;
	tabs = ( new ILaunchConfigurationTab[]{
			new ScriptMainTab( ),
			new JavaJRETab( ),
			new ScriptClasspathTab( ),
			new SourceLookupTab( ),
			new CommonTab( )
	} );
	setTabs( tabs );
}
 
Example #30
Source File: ArgumentsTab.java    From Pydev with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void setLaunchConfigurationDialog(ILaunchConfigurationDialog dialog) {
    super.setLaunchConfigurationDialog(dialog);
    programArgumentsBlock.setLaunchConfigurationDialog(dialog);
    workingDirectoryBlock.setLaunchConfigurationDialog(dialog);
    vmArgumentsBlock.setLaunchConfigurationDialog(dialog);
}