Questions tagged [e4]

The Eclipse e4 project is a new Eclipse API available since Eclipse version 4. Use this tag for questions about the Eclipse e4 API provided by the org.eclipse.e4.xxx plugins.

The Eclipse e4 project is a completely new approach of the Eclipse API available since Eclipse 4.

The project has three principal aims:

  • Simplify the Eclipse programming model
  • Enable the platform for use on emerging web-based runtime technologies
  • Broaden participation in development of the platform

Eclipse e4 uses an application model (which is strictly defined in an meta-model) as a basis for Eclipse based applications. This replaces lots of the old Eclipse extension points that were required to create applications, editors, menus, commands, etc.

Eclipse e4 uses the java annotation @inject to provide services, application parts, etc to the classes that make up the Eclipse application.

A broad overview of the new Eclipse e4 API is given in the Eclipse 4 RCP - Building Eclipse RCP applications based on Eclipse 4 tutorial.

Questions about the Eclipse e4 API provided by the org.eclipse.e4.xxx plugins should use . Questions about the old Eclipse API (3.x) should use .

887 questions
-1
votes
1 answer

Can I integrate Find/Replace Ctrl+F in Eclipse to my own project E4 RCP

I have created project which contains the test scripts PY files. I need to search for a string in PY files. Can I use in my code the already available Find/Replace Ctrl+F in Eclipse.... such that I can search in my project exe file.
Priya
  • 15
  • 6
-1
votes
1 answer

DoubleClick on a row in JfaceTable to get the details of object on that row

In eclipse e4. On double clicking on a row in jface table I want to see the data on that row as a dialog. Existing Code orgTable.addDoubleClickListener(new IDoubleClickListener() { @Override public void doubleClick(DoubleClickEvent…
Praveen
  • 101
  • 14
1 2 3
…
59
60