org.eclipse.debug.ui.ILaunchConfigurationTab Java Examples

The following examples show how to use org.eclipse.debug.ui.ILaunchConfigurationTab. 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: 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 #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: 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 #4
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 #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: 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 #7
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 #8
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 #9
Source File: WebAppTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 5 votes vote down vote up
private void createUpdateJob() {
  new WorkbenchJob("WebAppTabGroup") {
    @Override
    public IStatus runInUIThread(IProgressMonitor monitor) {
      ILaunchConfigurationTab tab = launchConfigurationDialog.getActiveTab();
      if (tab != null && !tab.getControl().isDisposed()) {
        launchConfigurationDialog.updateButtons();
        launchConfigurationDialog.updateMessage();
      }
      return Status.OK_STATUS;
    }
  }.schedule();
}
 
Example #10
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 #11
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 #12
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 #13
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 #14
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 #15
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 #16
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 #17
Source File: AbstractLangDebugTabGroup.java    From goclipse with Eclipse Public License 1.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
	setTabs(new ILaunchConfigurationTab[] {
			createMainLaunchConfigTab(),
			new LangArgumentsTab(),
			new EnvironmentTab(),
			new Lang_LocalApplicationCDebuggerTab(),
			new SourceLookupTab(),
			new CommonTab(),
	});
}
 
Example #18
Source File: GwtCompilerTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 5 votes vote down vote up
private void createUpdateJob() {
  new WorkbenchJob("GwtSuperDevModeCodeServerTabGroup") {
    @Override
    public IStatus runInUIThread(IProgressMonitor monitor) {
      ILaunchConfigurationTab tab = launchConfigurationDialog.getActiveTab();
      if (tab != null && !tab.getControl().isDisposed()) {
        launchConfigurationDialog.updateButtons();
        launchConfigurationDialog.updateMessage();
      }
      return Status.OK_STATUS;
    }
  }.schedule();
}
 
Example #19
Source File: CodewindLaunchConfigTabGroup.java    From codewind-eclipse with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[2];

    SourceLookupTab sourceLookupTab = new SourceLookupTab();
    sourceLookupTab.setLaunchConfigurationDialog(dialog);
    tabs[0] = sourceLookupTab;

    tabs[1] = new CommonTab();
    tabs[1].setLaunchConfigurationDialog(dialog);
    setTabs(tabs);
}
 
Example #20
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 #21
Source File: GwtSuperDevModeCodeServerTabGroup.java    From gwt-eclipse-plugin with Eclipse Public License 1.0 5 votes vote down vote up
private void createUpdateJob() {
  new WorkbenchJob("GwtSuperDevModeCodeServerTabGroup") {
    @Override
    public IStatus runInUIThread(IProgressMonitor monitor) {
      ILaunchConfigurationTab tab = launchConfigurationDialog.getActiveTab();
      if (tab != null && !tab.getControl().isDisposed()) {
        launchConfigurationDialog.updateButtons();
        launchConfigurationDialog.updateMessage();
      }
      return Status.OK_STATUS;
    }
  }.schedule();
}
 
Example #22
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 #23
Source File: AbstractSARLLaunchConfigurationTabGroup.java    From sarl with Apache License 2.0 5 votes vote down vote up
@Override
protected void setTabs(ILaunchConfigurationTab... tabs) {
	//Override the function for automatic injection within the tabs.
	if (this.injector != null) {
		for (final ILaunchConfigurationTab tab : tabs) {
			this.injector.injectMembers(tab);
		}
	}
	//
	super.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: ReportTabGroup.java    From birt with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * @see org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup#initializeFrom(ILaunchConfiguration)
 */
public void initializeFrom( ILaunchConfiguration configuration )
{
	final ILaunchConfiguration config = configuration;
	final ILaunchConfigurationTab[] tabs = getTabs( );
	BusyIndicator.showWhile( Display.getCurrent( ), new Runnable( ) {

		public void run( )
		{
			try
			{
				String id = config.getAttribute( IJavaLaunchConfigurationConstants.ATTR_SOURCE_PATH_PROVIDER,
						(String) null );
				if ( id == null
						&& config instanceof ILaunchConfigurationWorkingCopy )
				{
					ILaunchConfigurationWorkingCopy wc = (ILaunchConfigurationWorkingCopy) config;
					wc.setAttribute( IJavaLaunchConfigurationConstants.ATTR_SOURCE_PATH_PROVIDER,
							"org.eclipse.pde.ui.workbenchClasspathProvider" ); //$NON-NLS-1$
				}
			}
			catch ( CoreException e )
			{
			}
			for ( int i = 0; i < tabs.length; i++ )
			{
				tabs[i].initializeFrom( config );
			}
		}
	} );
}
 
Example #30
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 );
}