Questions tagged [eclipse-rcp]

For questions about the Eclipse Rich Client Platform which is a generic Java platform for running applications. It provides the basic blocks for building rich client application using the OSGi framework.

The characteristics of Eclipse RCP include:

  • Components - Eclipse includes a robust component model. These loosely coupled components are usually called plug-ins. The component model is based on the OSGi standard.

  • Middleware and infrastructure - On top of the component model is a set of frameworks and facilities that make the job of writing client applications much easier.

  • Native user experience - The Eclipse Standard Widget Toolkit (SWT) provides a graphical user interface (GUI) toolkit for java that allows efficient and portable access to the native UI facilities of the operating system (OS).

  • Portability - Eclipse provides support for heterogeneous OSs and client environments, ranging from traditional PCs, to thinner devices such as tablets and kiosks, down to mobile devices and embedded smart phones.

  • Intelligent install and update - Eclipse's component framework enables plug-ins to be deployed and updated using any number of mechanisms: HTTP, Java Web Start, repositories, or simple file copying.

  • Component libraries - The Eclipse community has produced plug-ins for building pluggable UIs, managing Help content, install and update support, text editing, consoles, product introductions, graphical editing frameworks, modeling frameworks, reporting, data manipulation, and many more.

The Eclipse IDE itself is an Eclipse RCP.

Documentation

5588 questions
1
vote
2 answers

Close editor if button inside this editor is pressed?? (RCP eclipse)

favorite I have a UI in which when I select an item (in a tree) and then press a button "add", I get a new editor. With each item I can get an editor. (but all have the same ID) My purpose is to close only the editor of item1, for example, when I…
jean24
  • 189
  • 3
  • 9
1
vote
1 answer

How to use more than one condition in ?

There are two conditions for a popup menu to appear, I am using the inside a tag in my plugin.xml? I have used the ...... but It doesn't seem to work. Below is the code
Abbas
  • 3,144
  • 2
  • 25
  • 45
1
vote
1 answer

only one editor at a time? RCP

I was wondering if there is a manner to make it impossible to open more than 1 editor at a time? what I have now is a button that each time it is pressed gives a new editor. I am using eclipse RCP thanks
jean
  • 11
  • 1
1
vote
1 answer

Looking for an automated UI tester tool for SWT (with Eclipse RCP)

What I tried so far: SWTBot and WindowTester. My problem with SWTBot is that I can click into an edit field, but I can't type into it. I looked up this issue in google and it looks like that SWTBot does not have this feature implemented. With…
Adam Arold
  • 29,285
  • 22
  • 112
  • 207
1
vote
0 answers

Can not restore state of an editor in Eclipse RCP based application

I am working on standalone Eclipse RCP based application. We have a custom Editor, which needs to be restored, after application was closed. I did everything as described here:…
Alex K.
  • 3,294
  • 4
  • 29
  • 41
1
vote
2 answers

Why can a feature-based Eclipse Application run configuration include unexpected plugins?

I have a feature-based product configuration and a run configuration using "Launch with: features selected below". However, when run, it includes some plug-ins which neither: Are included in the feature Appear when computing dependencies of the…
Alexey Romanov
  • 167,066
  • 35
  • 309
  • 487
1
vote
1 answer

Is it possible to arrange ordering/sequence of handledmenuitem in frangment.e4xmi

I have eclise rcp applications, I have added menu items using handledmenuitem in frangment.e4xmi. But I want to arrange those in some sequence. for example This is the menu items, but these are placed in order help - log - dg -apdu - validation but…
1
vote
1 answer

How to hide/remove the import/export buttons on Preferences dialog in Eclipse RCP

I have a little experience using Activities with Eclipse RCP to hide plugin UI components, but this one is stumping me. I used the Eclipse Plug-in Selection Spy to try and see which plugin provides the import/export buttons at the bottom of the…
jcurley
  • 66
  • 5
1
vote
1 answer

Unable to locate feature 'org.eclipse.equinox.executable'

[ERROR] Failed to execute goal org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products (default-publish-products) on project ------: Publisher failed. Verify your target-platform-configuration and executionEnvironment are suitable for…
1
vote
0 answers

java.lang.StackOverflowError when using tycho-surefire-plugin

I am trying to use tycho-surefire-plugin to run my JUnit Plugin Tests for an Eclipse RCP project. This is the error I am getting when the tests run (mvn clean verify) Here is how I configured tycho sure fire in pom.xml
Frederic
  • 2,015
  • 4
  • 20
  • 37
1
vote
0 answers

How to use Icons properly in Eclipse Maven/Tycho Product

I have a Eclipse Product, where my build is done with Maven/Tycho. In the .product file I "specify 7 seperate BMP images" which are all accepted (right color depth and size). During installation I get the error [IconExe] Error - 4 original icon(s)…
umpapa
  • 55
  • 1
  • 8
1
vote
1 answer

Launching eclipse product with other eclipse version

Hello I have an eclipse maven product which I now want to launch on another system. I get the error below. What does it mean and would it help to install and configure eclipse the exact same way like the one I made the product? (there the launch…
umpapa
  • 55
  • 1
  • 8
1
vote
0 answers

Eclipse Export requires 'osgi.ee' could not be found

I tried to export my eclipse plugin projects in .products file. "Missing requirement: Eclipse Jobs Mechanism 3.12.0.v20210723-1034 requires 'osgi.ee; (&(osgi.ee=JavaSE)(version=11))' but it could not be found .... " This error appears and I can't…
1
vote
1 answer

Eclipse product set default perspective

I'm creating Eclipse product and would like to set my own perspective by default opening after workspace launching. I saw that it can be solved via setting this parameter: -perspective ID but I can't understand where to set this parameter. I tried…
Andrew
  • 1,947
  • 2
  • 23
  • 61
1
vote
2 answers

Eclipse Plugin uncommon dependency restriction

There is a plugin X with open source code. I have cloned it and added my Class C. Lets call my version Xm (modified). My plugin Y depends on class C. The question: How can I achieve that plugin Y is only installable when class C is available (i.e.…
Ilya Ivanov
  • 2,379
  • 1
  • 21
  • 24