I am trying to write a custom launch configuration while running a plugin project as an eclipse application. I have to run the plugin with limited dependencies. Is it possible to override methods in org.eclipse.pde.launching.EclipseApplicationLaunchConfiguration
? If yes then how do I do it ?
相关问题
- [eclipse pde]How to catch the event that a launch
- Make Eclipse RCP Intro part of a perspective
- “Failed to parse the output of 'adb version
- Eclipse Blackberry Preprocessor Not Working?
- Eclipse says a more recent ADT version is required
相关文章
- Eclipse plugin to find out unused methods in a cla
- How best to use ViewerFilter on a TreeViewer?
- Writing a comment in Eclipse linking a specific li
- Eclipse + Turn an Existing Project into a JPA Proj
- Installing plugins for Eclipse offline [duplicate]
- UnsatisfiedLinkError While Calling Native Method f
- Eclipse Plugin Development: How to access code wri
- Where are the default Eclipse Plugin Development T
You can't easily override the methods in
EclipseApplicationLaunchConfiguration
. That would require writing a new launch configuration - probably by using theorg.eclipse.debug.core.launchConfigurationTypes
extension point to define a new launch type.EclipseApplicationLaunchConfiguration
always uses the settings from the current entry in the 'Eclipse Application' section of the 'Run Configurations'. You can always edit the run configuration to change the dependencies or create another run configuration with different dependencies.To write a custom configuration file
org.eclipse.jdt.junit.launcher.JUnitLaunchShortcut
createLaunchConfiguration
super.createLaunchConfiguration(element)
will return aILaunchConfigurationWorkingCopy
IPDELauncherConstants
Eclipse by default runs all the projects found in the workspace. This behavior can be modified by using the configuration created and overriding it with custom configuration.