Eclipse propagation with user interface settings

I would like to use Eclipse in the programming class. Is there a way to make some kind of settings file or some of them that I can distribute with it to set default values ​​for:

  • which buttons are on the toolbar
  • which menus are included in the application
  • which context menus are included.
  • what refinement options are available
    • I would like it to begin by completing only the words from the current document
      • this is not the completion of the java API or code generation or anything else
+6
eclipse
source share
3 answers

This can be done using the Eclipse Settings File . All you have to do is import the settings into the workspace.

You can also export the workspace folder and publish Eclipse along with the default workspace folder, which will contain all the settings.

Then create a shortcut to start eclipse using the -data <path to your workspace> option

+1
source share

I would try the following:

  • Install eclipse
  • Place the configuration files and workspace under version control and commit.
  • Configure Eclipse as needed.
  • Check all the changes in the version control to see which configuration files are relevant to my changes.
  • Continue as Zilvinas suggests.
+1
source share

Take a look at Eclipse Oomph . This, in essence, automates all the tasks that must be completed in order to set up a new development environment.

Also interesting are Yatta profiles , which do a similar thing based on Oomph.

They are pretty easy to set up and publish. Get your local eclipse, write in your profile, publish your profile, ask your students to use the specified profile. We used them in a professional environment for simpler built-in new developers!

+1
source share

All Articles