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
1 answer

Using EclipseLink 2.3.0 from Target

I want to use EclipseLink 2.3.0 (as provided with Indigo, resp. the Update Site target provided on http://www.eclipse.org/eclipselink/downloads/) in an Eclipse RCP application. If I include the EclipseLink libraries specifically in a Plug-In by…
col.panic
  • 2,944
  • 4
  • 25
  • 31
1
vote
3 answers

Programatically Detect window maximization/Minimization??? Eclipse RCP

As the title shows, I want to add a listener to my rcp user interface in order to detect maximization and minimization. Actually, it not that my real purpose, but I think it is a way to solve my problem. I have a view with some shapes in the center,…
jean24
  • 189
  • 3
  • 9
1
vote
0 answers

How to add image next to the title text of an Expandable composite?

I am working on modifying EGit for an use case. The current state looks like the following: I now want to add an image next to the title text of the unstaged section i.e. next to "Unstaged Changes (0)". Check the following for reference: I am not…
rayobanon
  • 43
  • 1
  • 7
1
vote
0 answers

RCP Application do not export product with Babel feature

I use Eclipse 4.14 for an old RCP application that I updated to Java 8. Now it is possible to export the product but as soon as I add the feature "org.eclipse.babel.nls_eclipse_de" for the German language to the product in the "Contents" part the…
Haily Ng
  • 11
  • 2
1
vote
1 answer

Best practices Implementing ProgressMonitorDialog in Eclipse RCP

I wish to Show progress of a long running operation(process) in UI, so that the user can understand the status of the background job. This is the way I have implemented and I feel like the code is absurd. Below is my code dialog.run(true,false, new…
srk
  • 4,857
  • 12
  • 65
  • 109
1
vote
0 answers

Difference between eclipse.ini and config.ini

I'm building a RCP and trying to define an Eclipse system property; for example eclipse.stateSaveDelayInterval. I understand that some properties can go into eclipse.ini under -vmargs with -D in the prefix. But I noticed that there are similar…
cebad75686
  • 11
  • 1
1
vote
0 answers

How to add i18n in the Help content toolbar and search button for an eclipse RCP application?

We have i18nized our help content in our eclipse RCP application. The TOC files and the HTML files they refer receive the OS nl and displays data accordingly. But the search, go button, Scope, All topics, the Help toolbar is still in English. The…
1
vote
1 answer

eclipse plugin/rcp: configure driver defintions similar to jdbc

i am writing an eclipse plugin that will connect to a server (no database!). for each platform and each release of said server there will be a different jar to use for connecting and a different set of .dll/.so files used by said driver jar. i'd…
1
vote
0 answers

How can I perform a single selection on dynamically generated tree items?

I need to perform the following task: On selection of a single tree item in a treeViewer, relevant data is supposed to display in the tableViewer. I have retrieved data from MySQL, using the rs.getString() method, and added the obtained string array…
Vt0613
  • 11
  • 1
1
vote
0 answers

Eclipse RCP Center Dialog on Active Monitor

I am trying to center a dialog in my Eclipse RCP application, and I tried different methods to center the dialog. Is there an easy/accepted way to center the dialog respecting the current location of the primary shell (the workbench app If I am not…
Fabian Deitelhoff
  • 712
  • 1
  • 7
  • 23
1
vote
1 answer

Maven jar dependency not found at runtime by OSGi environment

I'm building an Eclipse product that requires some external dependencies, which are not bundled as Eclipse plugins. For example javax.json-1.1.4.jar. I'm usign a target platform file, with Maven dependency added. This is the relevant part of the…
Gionata
  • 133
  • 11
1
vote
3 answers

Java SWT: how to delete the selected row in a SWT table

I have implemented one SWT table having a button widget in one column. On click of a button I am deleting the entire row. But I don't understand how to refresh/redraw/update the table. Table processListTable; TableItem tableItem; Image deleteImage =…
user674353
1
vote
2 answers

Artifact and metadata repository manager are null

I try to load an artifact and metadata repository manager as follows private IArtifactRepositoryManager getArtifactRepositoryManager() { IArtifactRepositoryManager artifactManager = (IArtifactRepositoryManager) …
uı6ʎɹnɯ ꞁəıuɐp
  • 3,431
  • 3
  • 40
  • 49
1
vote
0 answers

NoClassDefFoundError on javafx/beans/property/ReadOnlyDoubleProperty while using JavaFx-16 in RCP application

After migrating our RCP application from Java-8 to Java-11 with JavaFx-16, I'm getting the below error while executing the below line of code. This issue occurs in 3/5 executions. Error: Caused by: java.lang.NoClassDefFoundError:…
Rohith
  • 21
  • 2
1
vote
1 answer

Jung with RCP eclipse?

I want to use Jung in my RCP user interface, is this possible? the problem is that the Jung library works with JPanel and I should embed this JPanel in an Eclipse view (which works with composite) :( So how can I solve this problem...
jean24
  • 189
  • 3
  • 9