Launch configurations
Typically, eclipse uses the last used launch configuration if you click on the Run action (toolbar) or press ALT + R - T - 1 . Using the context menu will start something based on the actual selection (which may be a java class).
Scenarios
You can refactor the script. Choose Refactoring> Create Script. I have never used it, so I do not know if it meets your actual needs.
Disable / Enable
Eclipse, because it is based on OSGi, will only run the packages that are really needed. Therefore, when you start an eclipse session and don’t need any Android classes, then the IDE plug-ins for Android will not start and will not use ressources resources (provided that they are implemented correctly ...). But you need to make sure that your android projects are closed, otherwise the builder will start and start loading classes;)
Eclipse introduced a new feature (new ... I think starting from 3.4, maybe even 3.3), where you can share plugins between different installations. Thus, you can install 2 versions of eclipse that use the same basic plugins, and only one has additional plugins for Android. I'm not sure, but I think this is a sign of support for providing p2.
Andreas_D
source share